[][src]Union ffmpeg_dev::sys::av_alias64

#[repr(C)]
pub union av_alias64 {
    pub u64: u64,
    pub u32: [u32; 2],
    pub u16: [u16; 4],
    pub u8: [u8; 8],
    pub f64: f64,
    pub f32: [f32; 2],
    // some fields omitted
}

Fields

u64: u64u32: [u32; 2]u16: [u16; 4]u8: [u8; 8]f64: f64f32: [f32; 2]

Trait Implementations

impl Clone for av_alias64[src]

impl Copy for av_alias64[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

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

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

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