pub struct TickSet {
pub positions: Vec<f64>,
pub labels: Vec<String>,
}Expand description
A set of tick positions with formatted labels.
Fields§
§positions: Vec<f64>Tick positions in data space.
labels: Vec<String>Formatted string labels corresponding to each position.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TickSet
impl RefUnwindSafe for TickSet
impl Send for TickSet
impl Sync for TickSet
impl Unpin for TickSet
impl UnsafeUnpin for TickSet
impl UnwindSafe for TickSet
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