[][src]Struct ffmpeg_next::codec::video::Video

pub struct Video { /* fields omitted */ }

Implementations

impl Video[src]

pub unsafe fn new(codec: Codec) -> Video[src]

impl Video[src]

pub fn rates(&self) -> Option<RateIter>[src]

pub fn formats(&self) -> Option<FormatIter>[src]

Methods from Deref<Target = Codec>

pub unsafe fn as_ptr(&self) -> *const AVCodec[src]

pub fn is_encoder(&self) -> bool[src]

pub fn is_decoder(&self) -> bool[src]

pub fn name(&self) -> &str[src]

pub fn description(&self) -> &str[src]

pub fn medium(&self) -> Type[src]

pub fn id(&self) -> Id[src]

pub fn is_video(&self) -> bool[src]

pub fn is_audio(&self) -> bool[src]

pub fn max_lowres(&self) -> i32[src]

pub fn capabilities(&self) -> Capabilities[src]

pub fn profiles(&self) -> Option<ProfileIter>[src]

Trait Implementations

impl Clone for Video[src]

impl Copy for Video[src]

impl Decoder for Video[src]

impl Deref for Video[src]

type Target = Codec

The resulting type after dereferencing.

impl Encoder for Video[src]

impl Eq for Video[src]

impl PartialEq<Video> for Video[src]

impl StructuralEq for Video[src]

impl StructuralPartialEq for Video[src]

Auto Trait Implementations

impl RefUnwindSafe for Video

impl Send for Video

impl Sync for Video

impl Unpin for Video

impl UnwindSafe for Video

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.