pub enum ValueRef<'a> {
Ascii(&'a MetadataValue<Ascii>),
Binary(&'a MetadataValue<Binary>),
}Expand description
Reference to a value in a MetadataMap. It can point
to either an ascii or a binary (“*-bin” key) value.
Variants§
Ascii(&'a MetadataValue<Ascii>)
Binary(&'a MetadataValue<Binary>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ValueRef<'a>
impl<'a> RefUnwindSafe for ValueRef<'a>
impl<'a> Send for ValueRef<'a>
impl<'a> Sync for ValueRef<'a>
impl<'a> Unpin for ValueRef<'a>
impl<'a> UnwindSafe for ValueRef<'a>
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