Struct devise::syn::ExprAssign [−][src]
pub struct ExprAssign {
pub attrs: Vec<Attribute, Global>,
pub left: Box<Expr, Global>,
pub eq_token: Eq,
pub right: Box<Expr, Global>,
}
Expand description
An assignment expression: a = compute()
.
This type is available if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute, Global>
left: Box<Expr, Global>
eq_token: Eq
right: Box<Expr, Global>
Trait Implementations
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl !RefUnwindSafe for ExprAssign
impl !Send for ExprAssign
impl !Sync for ExprAssign
impl Unpin for ExprAssign
impl UnwindSafe for ExprAssign
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more