pub struct PrefixExpression {
pub op: PrefixOperator,
pub right: ExpressionIdx,
}Fields§
§op: PrefixOperator§right: ExpressionIdxTrait Implementations§
Source§impl Clone for PrefixExpression
impl Clone for PrefixExpression
Source§fn clone(&self) -> PrefixExpression
fn clone(&self) -> PrefixExpression
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 PrefixExpression
impl Debug for PrefixExpression
Source§impl FmtWithStore for PrefixExpression
impl FmtWithStore for PrefixExpression
fn fmt_with_store( &self, f: &mut Formatter<'_>, store: &ExpressionStore, ) -> Result
Source§impl PartialEq for PrefixExpression
impl PartialEq for PrefixExpression
Source§fn eq(&self, other: &PrefixExpression) -> bool
fn eq(&self, other: &PrefixExpression) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrefixExpression
Auto Trait Implementations§
impl Freeze for PrefixExpression
impl RefUnwindSafe for PrefixExpression
impl Send for PrefixExpression
impl Sync for PrefixExpression
impl Unpin for PrefixExpression
impl UnsafeUnpin for PrefixExpression
impl UnwindSafe for PrefixExpression
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