Struct Vp8Decoder
pub struct Vp8Decoder<R> { /* private fields */ }
VP8 Decoder
Only decodes keyframes
Implementations
impl<R: Read> Vp8Decoder<R>
fn decode_frame(r: R) -> Result<Frame, DecodingError>Decodes the current frame
Auto Trait Implementations
impl<R> Freeze for Vp8Decoder<R>
where
R: Freeze,
impl<R> RefUnwindSafe for Vp8Decoder<R>
where
R: RefUnwindSafe,
impl<R> Send for Vp8Decoder<R>
where
R: Send,
impl<R> Sync for Vp8Decoder<R>
where
R: Sync,
impl<R> Unpin for Vp8Decoder<R>
where
R: Unpin,
impl<R> UnsafeUnpin for Vp8Decoder<R>
where
R: UnsafeUnpin,
impl<R> UnwindSafe for Vp8Decoder<R>
where
R: UnwindSafe,
Blanket Implementations
impl<T> Any for Vp8Decoder<R>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Vp8Decoder<R>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Vp8Decoder<R>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for Vp8Decoder<R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for Vp8Decoder<R>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for Vp8Decoder<R>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Vp8Decoder<R>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>