pub enum AtAtParseItem {
KeyValue(String, String),
Data(Vec<u8>),
}Expand description
Type returned from AtAt parsing.
Variants§
KeyValue(String, String)
We parsed out a key-value item.
Data(Vec<u8>)
Raw data passing through parser.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AtAtParseItem
impl RefUnwindSafe for AtAtParseItem
impl Send for AtAtParseItem
impl Sync for AtAtParseItem
impl Unpin for AtAtParseItem
impl UnwindSafe for AtAtParseItem
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