pub struct Ticks {
pub positions: Vec<f64>,
pub labels: Vec<String>,
}Expand description
Computed tick marks for an axis.
Fields§
§positions: Vec<f64>Tick positions in data space.
labels: Vec<String>Formatted tick labels.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ticks
impl RefUnwindSafe for Ticks
impl Send for Ticks
impl Sync for Ticks
impl Unpin for Ticks
impl UnsafeUnpin for Ticks
impl UnwindSafe for Ticks
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