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