pub enum TickLabels {
On,
Auto,
None,
Manual(Vec<String>),
}
Expand description
Describes how and whether tick mark labels are set.
Variants§
On
Tick labels are present and determined by the library.
Auto
Tick labels are only present if a plot uses this axis.
None
No tick labels on this axis.
Manual(Vec<String>)
Tick labels are manually set.
Trait Implementations§
Source§impl Clone for TickLabels
impl Clone for TickLabels
Source§fn clone(&self) -> TickLabels
fn clone(&self) -> TickLabels
Returns a duplicate of the value. Read more
1.0.0 · 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 TickLabels
impl RefUnwindSafe for TickLabels
impl Send for TickLabels
impl Sync for TickLabels
impl Unpin for TickLabels
impl UnwindSafe for TickLabels
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