pub struct LinefillObject {
pub line1: usize,
pub line2: usize,
pub color: Option<Color>,
}Expand description
A fill between two lines (linefill.new).
Fields§
§line1: usize§line2: usize§color: Option<Color>Trait Implementations§
Source§impl Clone for LinefillObject
impl Clone for LinefillObject
Source§fn clone(&self) -> LinefillObject
fn clone(&self) -> LinefillObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LinefillObject
impl RefUnwindSafe for LinefillObject
impl Send for LinefillObject
impl Sync for LinefillObject
impl Unpin for LinefillObject
impl UnsafeUnpin for LinefillObject
impl UnwindSafe for LinefillObject
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