pub enum ParsedObu<'a> {
Process(Obu<'a>),
Drop(u32),
}
Variants§
Process(Obu<'a>)
We should process the OBU normally.
Drop(u32)
We should drop this OBU and advance to the next one. The u32 is how much we should advance.
Auto Trait Implementations§
impl<'a> Freeze for ParsedObu<'a>
impl<'a> RefUnwindSafe for ParsedObu<'a>
impl<'a> Send for ParsedObu<'a>
impl<'a> Sync for ParsedObu<'a>
impl<'a> Unpin for ParsedObu<'a>
impl<'a> UnwindSafe for ParsedObu<'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