Context

Struct Context 

Source
pub struct Context<D: Demuxer, R: Buffered> {
    pub info: GlobalInfo,
    pub user_private: Option<Arc<dyn Any + Send + Sync>>,
    /* private fields */
}
Expand description

Auxiliary structure to encapsulate a demuxer object and its additional data.

Fields§

§info: GlobalInfo

Global media file information.

§user_private: Option<Arc<dyn Any + Send + Sync>>

User private data.

This data cannot be cloned.

Implementations§

Source§

impl<D: Demuxer, R: Buffered> Context<D, R>

Source

pub fn new(demuxer: D, reader: R) -> Self

Creates a new Context instance.

Source

pub fn demuxer(&self) -> &D

Returns the underlying demuxer.

Source

pub fn read_headers(&mut self) -> Result<()>

Reads stream headers and global information from a data source.

Source

pub fn read_event(&mut self) -> Result<Event>

Reads an event from a data source.

Auto Trait Implementations§

§

impl<D, R> Freeze for Context<D, R>
where D: Freeze, R: Freeze,

§

impl<D, R> !RefUnwindSafe for Context<D, R>

§

impl<D, R> Send for Context<D, R>

§

impl<D, R> Sync for Context<D, R>

§

impl<D, R> Unpin for Context<D, R>
where D: Unpin, R: Unpin,

§

impl<D, R> !UnwindSafe for Context<D, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.