pub enum InfixDirection {
Left,
Right,
Non,
}Expand description
The associativity of an infix operator.
Variants§
Trait Implementations§
Source§impl Clone for InfixDirection
impl Clone for InfixDirection
Source§fn clone(&self) -> InfixDirection
fn clone(&self) -> InfixDirection
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 moreSource§impl Debug for InfixDirection
impl Debug for InfixDirection
Source§impl Hash for InfixDirection
impl Hash for InfixDirection
Source§impl PartialEq for InfixDirection
impl PartialEq for InfixDirection
Source§fn eq(&self, other: &InfixDirection) -> bool
fn eq(&self, other: &InfixDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InfixDirection
impl Eq for InfixDirection
impl StructuralPartialEq for InfixDirection
Auto Trait Implementations§
impl Freeze for InfixDirection
impl RefUnwindSafe for InfixDirection
impl Send for InfixDirection
impl Sync for InfixDirection
impl Unpin for InfixDirection
impl UnsafeUnpin for InfixDirection
impl UnwindSafe for InfixDirection
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