pub struct Graph<'a> {
pub color: Color,
pub width: Option<i32>,
pub height: Option<i32>,
pub counter: &'a Counter,
pub reference_value: f32,
pub orientation: Orientation,
}Fields§
§color: Color§width: Option<i32>§height: Option<i32>§counter: &'a Counter§reference_value: f32§orientation: OrientationTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Graph<'a>
impl<'a> RefUnwindSafe for Graph<'a>
impl<'a> Send for Graph<'a>
impl<'a> Sync for Graph<'a>
impl<'a> Unpin for Graph<'a>
impl<'a> UnwindSafe for Graph<'a>
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