pub struct Field {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub mutability: FieldMutability,
pub ident: Option<Ident>,
pub colon_token: Option<Colon>,
pub ty: Type,
}Expand description
A field of a struct or enum variant.
Fields§
§attrs: Vec<Attribute>§vis: Visibility§mutability: FieldMutability§ident: Option<Ident>Name of the field, if any.
Fields of tuple structs have no names.
colon_token: Option<Colon>§ty: TypeAuto Trait Implementations§
impl Freeze for Field
impl RefUnwindSafe for Field
impl !Send for Field
impl !Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
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