pub enum OperatorAssociativity {
Binary,
Unary,
None,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OperatorAssociativity
impl Clone for OperatorAssociativity
Source§fn clone(&self) -> OperatorAssociativity
fn clone(&self) -> OperatorAssociativity
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 moreSource§impl Debug for OperatorAssociativity
impl Debug for OperatorAssociativity
Source§impl<'de> Deserialize<'de> for OperatorAssociativity
impl<'de> Deserialize<'de> for OperatorAssociativity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OperatorAssociativity
impl PartialEq for OperatorAssociativity
Source§impl Serialize for OperatorAssociativity
impl Serialize for OperatorAssociativity
impl Copy for OperatorAssociativity
impl Eq for OperatorAssociativity
impl StructuralPartialEq for OperatorAssociativity
Auto Trait Implementations§
impl Freeze for OperatorAssociativity
impl RefUnwindSafe for OperatorAssociativity
impl Send for OperatorAssociativity
impl Sync for OperatorAssociativity
impl Unpin for OperatorAssociativity
impl UnwindSafe for OperatorAssociativity
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