Struct syn::ExprAssignOp[][src]

pub struct ExprAssignOp {
    pub attrs: Vec<Attribute>,
    pub left: Box<Expr>,
    pub op: BinOp,
    pub right: Box<Expr>,
}

A compound assignment expression: counter += 1.

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

Fields

Trait Implementations

impl ToTokens for ExprAssignOp
[src]

Write self to the given Tokens. Read more

Convert self directly into a Tokens object. Read more

impl Clone for ExprAssignOp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ExprAssignOp> for Expr
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for ExprAssignOp

impl !Sync for ExprAssignOp