pub enum GridAxis {
X,
Y,
Both,
}Expand description
Which axes should display grid lines.
Variants§
X
Grid lines for the x-axis only (vertical lines at each x-tick).
Y
Grid lines for the y-axis only (horizontal lines at each y-tick).
Both
Grid lines for both axes (the default).
Trait Implementations§
impl Copy for GridAxis
impl Eq for GridAxis
impl StructuralPartialEq for GridAxis
Auto Trait Implementations§
impl Freeze for GridAxis
impl RefUnwindSafe for GridAxis
impl Send for GridAxis
impl Sync for GridAxis
impl Unpin for GridAxis
impl UnsafeUnpin for GridAxis
impl UnwindSafe for GridAxis
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