[][src]Struct stainless_ffmpeg_sys::AVLFG

#[repr(C)]pub struct AVLFG {
    pub state: [c_uint; 64],
    pub index: c_int,
}

Context structure for the Lagged Fibonacci PRNG. The exact layout, types and content of this struct may change and should not be accessed directly. Only its sizeof() is guranteed to stay the same to allow easy instanciation.

Fields

state: [c_uint; 64]index: c_int

Trait Implementations

impl Clone for AVLFG[src]

impl Copy for AVLFG[src]

Auto Trait Implementations

impl RefUnwindSafe for AVLFG

impl Send for AVLFG

impl Sync for AVLFG

impl Unpin for AVLFG

impl UnwindSafe for AVLFG

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.