[][src]Struct ffav_sys::AVFifoBuffer

#[repr(C)]pub struct AVFifoBuffer {
    pub buffer: *mut u8,
    pub rptr: *mut u8,
    pub wptr: *mut u8,
    pub end: *mut u8,
    pub rndx: u32,
    pub wndx: u32,
}

Fields

buffer: *mut u8rptr: *mut u8wptr: *mut u8end: *mut u8rndx: u32wndx: u32

Trait Implementations

impl Clone for AVFifoBuffer[src]

impl Copy for AVFifoBuffer[src]

impl Debug for AVFifoBuffer[src]

impl Eq for AVFifoBuffer[src]

impl PartialEq<AVFifoBuffer> for AVFifoBuffer[src]

impl StructuralEq for AVFifoBuffer[src]

impl StructuralPartialEq for AVFifoBuffer[src]

Auto Trait Implementations

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.