pub enum DecoderImpl {
Y4m(Y4mDecoder<Box<dyn Read>>),
}Expand description
Internal enum representing the active decoder backend.
The variant is selected automatically during Decoder initialization.
Variants§
Y4m(Y4mDecoder<Box<dyn Read>>)
Y4M format parser (always available).
Auto Trait Implementations§
impl !RefUnwindSafe for DecoderImpl
impl !Send for DecoderImpl
impl !Sync for DecoderImpl
impl !UnwindSafe for DecoderImpl
impl Freeze for DecoderImpl
impl Unpin for DecoderImpl
impl UnsafeUnpin for DecoderImpl
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