pub enum AssignmentType {
Show 15 variants
Default,
Reference,
Coalesce,
Concatenation,
Addition,
Subtraction,
Multiplication,
Division,
Exponentiation,
Modulus,
BitwiseAnd,
BitwiseOr,
BitwiseXor,
BitwiseShiftRight,
BitwiseShiftLeft,
}Variants§
Default
Reference
Coalesce
Concatenation
Addition
Subtraction
Multiplication
Division
Exponentiation
Modulus
BitwiseAnd
BitwiseOr
BitwiseXor
BitwiseShiftRight
BitwiseShiftLeft
Trait Implementations§
Source§impl Clone for AssignmentType
impl Clone for AssignmentType
Source§fn clone(&self) -> AssignmentType
fn clone(&self) -> AssignmentType
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<'arena> CloneIn<'arena> for AssignmentType
impl<'arena> CloneIn<'arena> for AssignmentType
Source§impl Debug for AssignmentType
impl Debug for AssignmentType
Source§impl Display for AssignmentType
impl Display for AssignmentType
Source§impl PartialEq for AssignmentType
impl PartialEq for AssignmentType
Source§impl Serialize for AssignmentType
impl Serialize for AssignmentType
Source§impl TryFrom<&BString> for AssignmentType
impl TryFrom<&BString> for AssignmentType
impl StructuralPartialEq for AssignmentType
Auto Trait Implementations§
impl Freeze for AssignmentType
impl RefUnwindSafe for AssignmentType
impl Send for AssignmentType
impl Sync for AssignmentType
impl Unpin for AssignmentType
impl UnwindSafe for AssignmentType
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