pub struct AttributesSection<'data> {
pub subsections: Vec<AttributesSubsection<'data>>,
}
Expand description
The contents of an attributes section.
Fields§
§subsections: Vec<AttributesSubsection<'data>>
The subsections.
Implementations§
Source§impl<'data> AttributesSection<'data>
impl<'data> AttributesSection<'data>
Trait Implementations§
Source§impl<'data> Clone for AttributesSection<'data>
impl<'data> Clone for AttributesSection<'data>
Source§fn clone(&self) -> AttributesSection<'data>
fn clone(&self) -> AttributesSection<'data>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'data> Debug for AttributesSection<'data>
impl<'data> Debug for AttributesSection<'data>
Source§impl<'data> Default for AttributesSection<'data>
impl<'data> Default for AttributesSection<'data>
Source§fn default() -> AttributesSection<'data>
fn default() -> AttributesSection<'data>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'data> Freeze for AttributesSection<'data>
impl<'data> RefUnwindSafe for AttributesSection<'data>
impl<'data> Send for AttributesSection<'data>
impl<'data> Sync for AttributesSection<'data>
impl<'data> Unpin for AttributesSection<'data>
impl<'data> UnwindSafe for AttributesSection<'data>
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