[][src]Struct h264_reader::Context

pub struct Context<Ctx> {
    pub user_context: Ctx,
    // some fields omitted
}

Contextual data that needs to be tracked between evaluations of different portions of H264 syntax.

Fields

user_context: Ctx

Methods

impl<Ctx> Context<Ctx>[src]

pub fn new(user_context: Ctx) -> Self[src]

impl<Ctx> Context<Ctx>[src]

Trait Implementations

impl Default for Context<()>[src]

Auto Trait Implementations

impl<Ctx> RefUnwindSafe for Context<Ctx> where
    Ctx: RefUnwindSafe

impl<Ctx> Send for Context<Ctx> where
    Ctx: Send

impl<Ctx> Sync for Context<Ctx> where
    Ctx: Sync

impl<Ctx> Unpin for Context<Ctx> where
    Ctx: Unpin

impl<Ctx> UnwindSafe for Context<Ctx> where
    Ctx: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.