pub enum TagList {}Expand description
A tag list is a map from tag names to their values.
To be memory efficient it is stored as a slice of key value pairs.
Keys and Values are separated using a NUL and the slice is terminated with a double NUL.
Implementations§
Trait Implementations§
Source§impl From<&TagList> for OwnedTagList
impl From<&TagList> for OwnedTagList
Auto Trait Implementations§
impl Freeze for TagList
impl RefUnwindSafe for TagList
impl Send for TagList
impl Sync for TagList
impl Unpin for TagList
impl UnwindSafe for TagList
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