pub struct PostfixExpression {
pub span: Span,
pub inner: TestOperand,
pub operator: PostfixOperator,
}Fields§
§span: Span§inner: TestOperand§operator: PostfixOperatorTrait Implementations§
Source§impl Clone for PostfixExpression
impl Clone for PostfixExpression
Source§fn clone(&self) -> PostfixExpression
fn clone(&self) -> PostfixExpression
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 PostfixExpression
impl Debug for PostfixExpression
Source§impl<'de> Deserialize<'de> for PostfixExpression
impl<'de> Deserialize<'de> for PostfixExpression
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 PartialEq for PostfixExpression
impl PartialEq for PostfixExpression
Source§impl Serialize for PostfixExpression
impl Serialize for PostfixExpression
impl StructuralPartialEq for PostfixExpression
Auto Trait Implementations§
impl Freeze for PostfixExpression
impl RefUnwindSafe for PostfixExpression
impl Send for PostfixExpression
impl Sync for PostfixExpression
impl Unpin for PostfixExpression
impl UnsafeUnpin for PostfixExpression
impl UnwindSafe for PostfixExpression
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