pub enum UnaryOp<'a> {
Plus {
whitespace_after: ParenthesizableWhitespace<'a>,
},
Minus {
whitespace_after: ParenthesizableWhitespace<'a>,
},
BitInvert {
whitespace_after: ParenthesizableWhitespace<'a>,
},
Not {
whitespace_after: ParenthesizableWhitespace<'a>,
},
}
Variants§
Plus
Fields
§
whitespace_after: ParenthesizableWhitespace<'a>
Minus
Fields
§
whitespace_after: ParenthesizableWhitespace<'a>
BitInvert
Fields
§
whitespace_after: ParenthesizableWhitespace<'a>
Not
Fields
§
whitespace_after: ParenthesizableWhitespace<'a>
Trait Implementations§
impl<'a> Eq for UnaryOp<'a>
impl<'a> StructuralPartialEq for UnaryOp<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnaryOp<'a>
impl<'a> RefUnwindSafe for UnaryOp<'a>
impl<'a> Send for UnaryOp<'a>
impl<'a> Sync for UnaryOp<'a>
impl<'a> Unpin for UnaryOp<'a>
impl<'a> UnwindSafe for UnaryOp<'a>
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