pub enum CompoundAssignmentExprOperator {
PercentEq(Span),
AmpEq(Span),
StarEq(Span),
PlusEq(Span),
MinusEq(Span),
SlashEq(Span),
ShlEq(Span),
ShrEq(Span),
CaretEq(Span),
PipeEq(Span),
}Variants§
PercentEq(Span)
AmpEq(Span)
StarEq(Span)
PlusEq(Span)
MinusEq(Span)
SlashEq(Span)
ShlEq(Span)
ShrEq(Span)
CaretEq(Span)
PipeEq(Span)
Trait Implementations§
Source§impl Clone for CompoundAssignmentExprOperator
impl Clone for CompoundAssignmentExprOperator
Source§fn clone(&self) -> CompoundAssignmentExprOperator
fn clone(&self) -> CompoundAssignmentExprOperator
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<'tree> FromNode<'tree> for CompoundAssignmentExprOperator
impl<'tree> FromNode<'tree> for CompoundAssignmentExprOperator
Source§impl PartialEq for CompoundAssignmentExprOperator
impl PartialEq for CompoundAssignmentExprOperator
Source§fn eq(&self, other: &CompoundAssignmentExprOperator) -> bool
fn eq(&self, other: &CompoundAssignmentExprOperator) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CompoundAssignmentExprOperator
impl StructuralPartialEq for CompoundAssignmentExprOperator
Auto Trait Implementations§
impl Freeze for CompoundAssignmentExprOperator
impl RefUnwindSafe for CompoundAssignmentExprOperator
impl Send for CompoundAssignmentExprOperator
impl Sync for CompoundAssignmentExprOperator
impl Unpin for CompoundAssignmentExprOperator
impl UnsafeUnpin for CompoundAssignmentExprOperator
impl UnwindSafe for CompoundAssignmentExprOperator
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