pub struct ExprField {
pub attrs: Vec<Attribute>,
pub base: Box<Expr>,
pub dot_token: Dot,
pub member: Member,
}Expand description
Access of a named struct field (obj.k) or unnamed tuple struct
field (obj.0).
Fields§
§attrs: Vec<Attribute>§base: Box<Expr>§dot_token: Dot§member: MemberTrait Implementations§
Auto Trait Implementations§
impl Freeze for ExprField
impl RefUnwindSafe for ExprField
impl !Send for ExprField
impl !Sync for ExprField
impl Unpin for ExprField
impl UnwindSafe for ExprField
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more