pub struct Extmap<'a> {
pub value: u32,
pub direction: Option<Direction>,
pub uri: Cow<'a, str>,
pub attributes: Vec<Cow<'a, str>>,
}Expand description
a=extmap:<value>["/"<direction>] <URI> <extensionattributes>
https://tools.ietf.org/html/rfc8285#section-8
Fields§
§value: u32§direction: Option<Direction>§uri: Cow<'a, str>§attributes: Vec<Cow<'a, str>>Implementations§
Trait Implementations§
impl<'a> Eq for Extmap<'a>
impl<'a> StructuralPartialEq for Extmap<'a>
Auto Trait Implementations§
impl<'a> Freeze for Extmap<'a>
impl<'a> RefUnwindSafe for Extmap<'a>
impl<'a> Send for Extmap<'a>
impl<'a> Sync for Extmap<'a>
impl<'a> Unpin for Extmap<'a>
impl<'a> UnwindSafe for Extmap<'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