pub struct FillObject {
pub id1: Option<usize>,
pub id2: Option<usize>,
pub color: Option<Color>,
pub title: String,
}Expand description
Represents a box drawable object
A fill(...) between two plots or hlines.
Fields§
§id1: Option<usize>Id of the first plot/hline (None when it was na).
id2: Option<usize>Id of the second plot/hline.
color: Option<Color>§title: StringTrait Implementations§
Source§impl Clone for FillObject
impl Clone for FillObject
Source§fn clone(&self) -> FillObject
fn clone(&self) -> FillObject
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 FillObject
impl RefUnwindSafe for FillObject
impl Send for FillObject
impl Sync for FillObject
impl Unpin for FillObject
impl UnsafeUnpin for FillObject
impl UnwindSafe for FillObject
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