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
sourceimpl From<ExprReference> for Expr
impl From<ExprReference> for Expr
sourcefn from(e: ExprReference) -> Expr
fn from(e: ExprReference) -> Expr
Converts to this type from the input type.
sourceimpl Parse for ExprReference
impl Parse for ExprReference
fn parse(input: ParseStream<'_>) -> Result<Self>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more