Enum swc_ecma_visit::fields::AssignExprField
source · pub enum AssignExprField {
Span,
Op,
Left,
Right,
}
Expand description
This enum represents fields of AssignExprField
Variants§
Span
This represents span
Op
This represents op
Left
This represents left
Right
This represents right
Implementations§
Trait Implementations§
source§impl Clone for AssignExprField
impl Clone for AssignExprField
source§fn clone(&self) -> AssignExprField
fn clone(&self) -> AssignExprField
Returns a copy 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 AssignExprField
impl Debug for AssignExprField
source§impl<'de> Deserialize<'de> for AssignExprField
impl<'de> Deserialize<'de> for AssignExprField
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 Hash for AssignExprField
impl Hash for AssignExprField
source§impl Ord for AssignExprField
impl Ord for AssignExprField
source§fn cmp(&self, other: &AssignExprField) -> Ordering
fn cmp(&self, other: &AssignExprField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<AssignExprField> for AssignExprField
impl PartialEq<AssignExprField> for AssignExprField
source§fn eq(&self, other: &AssignExprField) -> bool
fn eq(&self, other: &AssignExprField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<AssignExprField> for AssignExprField
impl PartialOrd<AssignExprField> for AssignExprField
source§fn partial_cmp(&self, other: &AssignExprField) -> Option<Ordering>
fn partial_cmp(&self, other: &AssignExprField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for AssignExprField
impl Serialize for AssignExprField
impl Copy for AssignExprField
impl Eq for AssignExprField
impl StructuralEq for AssignExprField
impl StructuralPartialEq for AssignExprField
Auto Trait Implementations§
impl RefUnwindSafe for AssignExprField
impl Send for AssignExprField
impl Sync for AssignExprField
impl Unpin for AssignExprField
impl UnwindSafe for AssignExprField
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