pub struct AttributeGroup {
pub disposition: AttributeGroupDisposition,
pub attributes: Vec<Attribute>,
}Expand description
Represents a single attribute group.
Fields§
§disposition: AttributeGroupDispositionThe “disposition” of this attribute group.
attributes: Vec<Attribute>The attributes in this group.
Trait Implementations§
Source§impl Clone for AttributeGroup
impl Clone for AttributeGroup
Source§fn clone(&self) -> AttributeGroup
fn clone(&self) -> AttributeGroup
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AttributeGroup
impl RefUnwindSafe for AttributeGroup
impl Send for AttributeGroup
impl Sync for AttributeGroup
impl Unpin for AttributeGroup
impl UnwindSafe for AttributeGroup
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