pub struct Attribute<'input> {
pub name: AId,
pub value: StringStorage<'input>,
pub important: bool,
}
Expand description
An attribute.
Fields§
§name: AId
Attribute’s name.
value: StringStorage<'input>
Attribute’s value.
important: bool
Attribute’s importance
Trait Implementations§
Auto Trait Implementations§
impl<'input> Freeze for Attribute<'input>
impl<'input> RefUnwindSafe for Attribute<'input>
impl<'input> Send for Attribute<'input>
impl<'input> Sync for Attribute<'input>
impl<'input> Unpin for Attribute<'input>
impl<'input> UnwindSafe for Attribute<'input>
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