pub struct StreamHeader<'x> {
pub from: Option<Cow<'x, str>>,
pub to: Option<Cow<'x, str>>,
pub id: Option<Cow<'x, str>>,
}
Expand description
Contains metadata from an XML stream header
Fields§
§from: Option<Cow<'x, str>>
The optional from
attribute.
to: Option<Cow<'x, str>>
The optional to
attribute.
id: Option<Cow<'x, str>>
The optional id
attribute.
Implementations§
Source§impl<'x> StreamHeader<'x>
impl<'x> StreamHeader<'x>
Trait Implementations§
Source§impl<'x> Debug for StreamHeader<'x>
impl<'x> Debug for StreamHeader<'x>
Source§impl<'x> Default for StreamHeader<'x>
impl<'x> Default for StreamHeader<'x>
Source§fn default() -> StreamHeader<'x>
fn default() -> StreamHeader<'x>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'x> Freeze for StreamHeader<'x>
impl<'x> RefUnwindSafe for StreamHeader<'x>
impl<'x> Send for StreamHeader<'x>
impl<'x> Sync for StreamHeader<'x>
impl<'x> Unpin for StreamHeader<'x>
impl<'x> UnwindSafe for StreamHeader<'x>
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