pub struct Tick {
pub value: f64,
pub label: String,
}Expand description
A single tick mark with its position in data space and a formatted label.
Fields§
§value: f64The position of this tick in data coordinates.
label: StringA human-readable label for this tick (e.g. “0.2”, “100”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tick
impl RefUnwindSafe for Tick
impl Send for Tick
impl Sync for Tick
impl Unpin for Tick
impl UnsafeUnpin for Tick
impl UnwindSafe for Tick
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