pub struct Line {
pub color: Option<Color>,
pub stroke_width: f32,
pub left: f32,
pub top: f32,
pub right: f32,
pub bottom: f32,
pub stroke_dash_array: Option<String>,
}Fields§
§color: Option<Color>§stroke_width: f32§left: f32§top: f32§right: f32§bottom: f32§stroke_dash_array: Option<String>Implementations§
Trait Implementations§
source§impl PartialEq for Line
impl PartialEq for Line
impl StructuralPartialEq for Line
Auto Trait Implementations§
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnwindSafe for Line
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().