pub enum TickDirection {
Outward,
Inward,
}Expand description
Direction in which axis tick marks extend from the spine.
Variants§
Outward
Ticks extend outward, away from the data area.
Inward
Ticks extend inward, into the data area.
Trait Implementations§
Source§impl Clone for TickDirection
impl Clone for TickDirection
Source§fn clone(&self) -> TickDirection
fn clone(&self) -> TickDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TickDirection
Source§impl Debug for TickDirection
impl Debug for TickDirection
impl Eq for TickDirection
Source§impl PartialEq for TickDirection
impl PartialEq for TickDirection
Source§fn eq(&self, other: &TickDirection) -> bool
fn eq(&self, other: &TickDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TickDirection
Auto Trait Implementations§
impl Freeze for TickDirection
impl RefUnwindSafe for TickDirection
impl Send for TickDirection
impl Sync for TickDirection
impl Unpin for TickDirection
impl UnsafeUnpin for TickDirection
impl UnwindSafe for TickDirection
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