Struct syn::PatReference
source · [−]pub struct PatReference {
pub attrs: Vec<Attribute>,
pub and_token: And,
pub mutability: Option<Mut>,
pub pat: Box<Pat>,
}
Expand description
A reference pattern: &mut var
.
This type is available only if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute>
and_token: And
mutability: Option<Mut>
pat: Box<Pat>
Trait Implementations
sourceimpl From<PatReference> for Pat
impl From<PatReference> for Pat
sourcefn from(e: PatReference) -> Pat
fn from(e: PatReference) -> Pat
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for PatReference
impl !Send for PatReference
impl !Sync for PatReference
impl Unpin for PatReference
impl UnwindSafe for PatReference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more