Enum syn::UnOp [−][src]
Expand description
A unary operator: *, !, -.
This type is available only if Syn is built with the "derive" or "full"
feature.
Variants
Deref(Star)The * operator for dereferencing
Tuple Fields of Deref
0: StarNot(Bang)The ! operator for logical inversion
Tuple Fields of Not
0: BangNeg(Sub)The - operator for negation
Tuple Fields of Neg
0: SubTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UnOp
impl UnwindSafe for UnOp
Blanket Implementations
Mutably borrows from an owned value. Read more