Struct syn::ExprReference [−][src]
pub struct ExprReference {
pub attrs: Vec<Attribute>,
pub and_token: And,
pub raw: Reserved,
pub mutability: Option<Mut>,
pub expr: Box<Expr>,
}This is supported on crate feature
full only.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: Andraw: Reservedmutability: Option<Mut>expr: Box<Expr>Trait Implementations
Performs the conversion.
impl PartialEq<ExprReference> for ExprReference
This is supported on crate feature extra-traits only.
impl PartialEq<ExprReference> for ExprReference
This is supported on crate feature
extra-traits only.Auto Trait Implementations
impl RefUnwindSafe for ExprReference
impl !Send for ExprReference
impl !Sync for ExprReference
impl Unpin for ExprReference
impl UnwindSafe for ExprReference
Blanket Implementations
Mutably borrows from an owned value. Read more