[−][src]Struct conrod_core::widget::grid::Lines
A series of lines distributed across an axis.
Fields
step: T
The distance that separates each line.
offset: Option<T>
An optional offset for the lines along they're axis.
thickness: Option<Scalar>
The thickness of each of the lines drawn.
If None
, the thickness
specified within the Style
is used.
color: Option<Color>
The color of each of the lines drawn.
If None
, the color
specified within the Style
is used.
Implementations
impl<T> Lines<T>
[src]
pub fn step(step: T) -> Self
[src]
Begin building a new set of lines for the grid step
distance apart.
Lines with a step
that equates to 0.0
or less will not be drawn.
pub fn offset(self, offset: T) -> Self
[src]
Specify an offset for the grid.
Offsets that are greater than the step
size will be wrapped around the step
size.
pub fn thickness(self, thickness: Scalar) -> Self
[src]
Specify a unique thickness for these lines.
pub fn color(self, color: Color) -> Self
[src]
Use the specified color to uniquely color the this set of lines.
pub fn x<Y>(self) -> Axis<T, Y>
[src]
Move the lines over the X axis.
pub fn y<X>(self) -> Axis<X, T>
[src]
Move the lines over the Y axis.
Trait Implementations
impl<T: Clone> Clone for Lines<T>
[src]
impl<T: Copy> Copy for Lines<T>
[src]
impl<T: Debug> Debug for Lines<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Lines<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Lines<T> where
T: Send,
T: Send,
impl<T> Sync for Lines<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Lines<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Lines<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,