pub enum HeaderParserResult<'x> {
Rfc(RfcHeader),
Other(Cow<'x, str>),
Lf,
Eof,
}
Variants§
Trait Implementations§
Source§impl<'x> Debug for HeaderParserResult<'x>
impl<'x> Debug for HeaderParserResult<'x>
Source§impl<'x> PartialEq for HeaderParserResult<'x>
impl<'x> PartialEq for HeaderParserResult<'x>
impl<'x> Eq for HeaderParserResult<'x>
impl<'x> StructuralPartialEq for HeaderParserResult<'x>
Auto Trait Implementations§
impl<'x> Freeze for HeaderParserResult<'x>
impl<'x> RefUnwindSafe for HeaderParserResult<'x>
impl<'x> Send for HeaderParserResult<'x>
impl<'x> Sync for HeaderParserResult<'x>
impl<'x> Unpin for HeaderParserResult<'x>
impl<'x> UnwindSafe for HeaderParserResult<'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