pub enum PostfixKind {
StructField(AnonymousStructType, usize),
MemberCall(FunctionRef, Vec<ArgumentExpressionOrLocation>),
FunctionCall(Vec<ArgumentExpressionOrLocation>),
OptionalChainingOperator,
NoneCoalescingOperator(Expression),
}
Variants§
StructField(AnonymousStructType, usize)
MemberCall(FunctionRef, Vec<ArgumentExpressionOrLocation>)
FunctionCall(Vec<ArgumentExpressionOrLocation>)
OptionalChainingOperator
NoneCoalescingOperator(Expression)
Trait Implementations§
Source§impl Clone for PostfixKind
impl Clone for PostfixKind
Source§fn clone(&self) -> PostfixKind
fn clone(&self) -> PostfixKind
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 moreAuto Trait Implementations§
impl Freeze for PostfixKind
impl RefUnwindSafe for PostfixKind
impl !Send for PostfixKind
impl !Sync for PostfixKind
impl Unpin for PostfixKind
impl UnwindSafe for PostfixKind
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