Struct syn::ExprReference
source · pub struct ExprReference {
pub attrs: Vec<Attribute>,
pub and_token: And,
pub raw: Reserved,
pub mutability: Option<Mut>,
pub expr: Box<Expr>,
}Expand description
A referencing operation: &a or &mut a.
This type is available only if Syn is built with the "full" feature.
Fields§
§attrs: Vec<Attribute>§and_token: And§raw: Reserved§mutability: Option<Mut>§expr: Box<Expr>Trait Implementations§
source§impl Clone for ExprReference
impl Clone for ExprReference
source§impl Debug for ExprReference
impl Debug for ExprReference
source§impl From<ExprReference> for Expr
impl From<ExprReference> for Expr
source§fn from(e: ExprReference) -> Expr
fn from(e: ExprReference) -> Expr
Converts to this type from the input type.