pub enum UnaryOpExpressionOperator {
Bang(Span),
Plus(Span),
Minus(Span),
Tilde(Span),
}Variants§
Trait Implementations§
Source§impl Clone for UnaryOpExpressionOperator
impl Clone for UnaryOpExpressionOperator
Source§fn clone(&self) -> UnaryOpExpressionOperator
fn clone(&self) -> UnaryOpExpressionOperator
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 Debug for UnaryOpExpressionOperator
impl Debug for UnaryOpExpressionOperator
Source§impl<'tree> FromNode<'tree> for UnaryOpExpressionOperator
impl<'tree> FromNode<'tree> for UnaryOpExpressionOperator
Auto Trait Implementations§
impl Freeze for UnaryOpExpressionOperator
impl RefUnwindSafe for UnaryOpExpressionOperator
impl Send for UnaryOpExpressionOperator
impl Sync for UnaryOpExpressionOperator
impl Unpin for UnaryOpExpressionOperator
impl UnsafeUnpin for UnaryOpExpressionOperator
impl UnwindSafe for UnaryOpExpressionOperator
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