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>,
}
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
Performs the conversion.
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