pub struct AttributeGroup {
pub tag: DelimiterTag,
pub attributes: HashMap<AttributeName, Attribute>,
}Expand description
An “attribute-group” field contains zero or more “attribute” fields.
-----------------------------------------------
| begin-attribute-group-tag | 1 byte
----------------------------------------------------------
| attribute | p bytes |- 0 or more
----------------------------------------------------------ref: rfc8010
Fields§
§tag: DelimiterTag§attributes: HashMap<AttributeName, Attribute>Trait Implementations§
Source§impl Debug for AttributeGroup
impl Debug for AttributeGroup
Source§impl<'de> Deserialize<'de> for AttributeGroup
impl<'de> Deserialize<'de> for AttributeGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto 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