Struct macro_tools::orphan::syn::ExprAssign   
source · pub struct ExprAssign {
    pub attrs: Vec<Attribute>,
    pub left: Box<Expr>,
    pub eq_token: Eq,
    pub right: Box<Expr>,
}Expand description
An assignment expression: a = compute().
Fields§
§attrs: Vec<Attribute>§left: Box<Expr>§eq_token: Eq§right: Box<Expr>Trait Implementations§
source§impl Clone for ExprAssign
 
impl Clone for ExprAssign
source§fn clone(&self) -> ExprAssign
 
fn clone(&self) -> ExprAssign
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for ExprAssign
 
impl Debug for ExprAssign
source§impl From<ExprAssign> for Expr
 
impl From<ExprAssign> for Expr
source§fn from(e: ExprAssign) -> Expr
 
fn from(e: ExprAssign) -> Expr
Converts to this type from the input type.
source§impl Hash for ExprAssign
 
impl Hash for ExprAssign
source§impl Parse for ExprAssign
 
impl Parse for ExprAssign
fn parse(input: &ParseBuffer<'_>) -> Result<ExprAssign, Error>
source§impl PartialEq for ExprAssign
 
impl PartialEq for ExprAssign
source§fn eq(&self, other: &ExprAssign) -> bool
 
fn eq(&self, other: &ExprAssign) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToTokens for ExprAssign
 
impl ToTokens for ExprAssign
source§fn to_tokens(&self, tokens: &mut TokenStream)
 
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
 
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
    Self: Sized,
 
fn into_token_stream(self) -> TokenStreamwhere
    Self: Sized,
impl Eq for ExprAssign
Auto Trait Implementations§
impl Freeze for ExprAssign
impl RefUnwindSafe for ExprAssign
impl !Send for ExprAssign
impl !Sync for ExprAssign
impl Unpin for ExprAssign
impl UnwindSafe for ExprAssign
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
source§impl<T> Spanned for Twhere
    T: Spanned + ?Sized,
 
impl<T> Spanned for Twhere
    T: Spanned + ?Sized,
source§fn span(&self) -> Span
 
fn span(&self) -> Span
Returns a 
Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty.