pub enum AssignmentTargetSyntax {
Name(ObjectName),
Index {
collection: ObjectName,
index: Expression,
},
}Variants§
Trait Implementations§
Source§impl Clone for AssignmentTargetSyntax
impl Clone for AssignmentTargetSyntax
Source§fn clone(&self) -> AssignmentTargetSyntax
fn clone(&self) -> AssignmentTargetSyntax
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 AssignmentTargetSyntax
impl Debug for AssignmentTargetSyntax
Source§impl Display for AssignmentTargetSyntax
impl Display for AssignmentTargetSyntax
Source§impl PartialEq for AssignmentTargetSyntax
impl PartialEq for AssignmentTargetSyntax
impl StructuralPartialEq for AssignmentTargetSyntax
Auto Trait Implementations§
impl Freeze for AssignmentTargetSyntax
impl RefUnwindSafe for AssignmentTargetSyntax
impl Send for AssignmentTargetSyntax
impl Sync for AssignmentTargetSyntax
impl Unpin for AssignmentTargetSyntax
impl UnsafeUnpin for AssignmentTargetSyntax
impl UnwindSafe for AssignmentTargetSyntax
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