pub struct PostfixExpression<'ast> {
pub name: KeywordOrIdentifier<'ast>,
pub accesses: Vec<Access<'ast>>,
pub span: Span<'ast>,
}Fields§
§name: KeywordOrIdentifier<'ast>§accesses: Vec<Access<'ast>>§span: Span<'ast>Trait Implementations§
Source§impl<'ast> Clone for PostfixExpression<'ast>
impl<'ast> Clone for PostfixExpression<'ast>
Source§fn clone(&self) -> PostfixExpression<'ast>
fn clone(&self) -> PostfixExpression<'ast>
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<'ast> Debug for PostfixExpression<'ast>
impl<'ast> Debug for PostfixExpression<'ast>
Source§impl<'ast> FromPest<'ast> for PostfixExpression<'ast>
impl<'ast> FromPest<'ast> for PostfixExpression<'ast>
Source§impl<'ast> PartialEq for PostfixExpression<'ast>
impl<'ast> PartialEq for PostfixExpression<'ast>
Source§impl<'ast> Serialize for PostfixExpression<'ast>
impl<'ast> Serialize for PostfixExpression<'ast>
impl<'ast> StructuralPartialEq for PostfixExpression<'ast>
Auto Trait Implementations§
impl<'ast> Freeze for PostfixExpression<'ast>
impl<'ast> RefUnwindSafe for PostfixExpression<'ast>
impl<'ast> Send for PostfixExpression<'ast>
impl<'ast> Sync for PostfixExpression<'ast>
impl<'ast> Unpin for PostfixExpression<'ast>
impl<'ast> UnwindSafe for PostfixExpression<'ast>
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