pub enum Axis {
None {
span: Span,
},
X {
span: Span,
},
Y {
span: Span,
},
Z {
span: Span,
},
}Expand description
Axis component for 3-component special registers (x/y/z)
Variants§
Implementations§
Trait Implementations§
impl Eq for Axis
impl StructuralPartialEq for Axis
Source§impl TreeDisplay for Axis
impl TreeDisplay for Axis
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
Auto Trait Implementations§
impl Freeze for Axis
impl RefUnwindSafe for Axis
impl Send for Axis
impl Sync for Axis
impl Unpin for Axis
impl UnsafeUnpin for Axis
impl UnwindSafe for Axis
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