[][src]Struct graph_rs_types::complextypes::Video

pub struct Video {
    pub audio_bits_per_sample: i32,
    pub audio_channels: i32,
    pub audio_format: String,
    pub audio_samples_per_second: i32,
    pub bitrate: i32,
    pub duration: i64,
    pub four_c_c: String,
    pub frame_rate: i64,
    pub height: i32,
    pub width: i32,
}

Fields

audio_bits_per_sample: i32audio_channels: i32audio_format: Stringaudio_samples_per_second: i32bitrate: i32duration: i64four_c_c: Stringframe_rate: i64height: i32width: i32

Trait Implementations

impl Eq for Video[src]

impl Clone for Video[src]

impl PartialEq<Video> for Video[src]

impl Debug for Video[src]

impl Serialize for Video[src]

impl<'de> Deserialize<'de> for Video[src]

Auto Trait Implementations

impl Unpin for Video

impl Sync for Video

impl Send for Video

impl UnwindSafe for Video

impl RefUnwindSafe for Video

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]