pub enum SliceEvent<'a, R: BitRead> {
End,
Skip {
mb_addr: u32,
next: SliceDataReader<'a, R>,
},
Macroblock(MacroblockResidual<'a, R>),
}Variants§
Auto Trait Implementations§
impl<'a, R> !UnwindSafe for SliceEvent<'a, R>
impl<'a, R> Freeze for SliceEvent<'a, R>
impl<'a, R> RefUnwindSafe for SliceEvent<'a, R>
impl<'a, R> Send for SliceEvent<'a, R>
impl<'a, R> Sync for SliceEvent<'a, R>
impl<'a, R> Unpin for SliceEvent<'a, R>
impl<'a, R> UnsafeUnpin for SliceEvent<'a, R>
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