Struct syn::ExprUnary [] [src]

pub struct ExprUnary {
    pub attrs: Vec<Attribute>,
    pub op: UnOp,
    pub expr: Box<Expr>,
}

A unary operation: !x, *x.

This type is available if Syn is built with the "derive" or "full" feature.

Fields

Trait Implementations

impl ToTokens for ExprUnary
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for ExprUnary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ExprUnary> for Expr
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for ExprUnary

impl !Sync for ExprUnary