[][src]Struct obs_sys::video_output_info

#[repr(C)]
pub struct video_output_info {
    pub name: *const c_char,
    pub format: video_format,
    pub fps_num: u32,
    pub fps_den: u32,
    pub width: u32,
    pub height: u32,
    pub cache_size: size_t,
    pub colorspace: video_colorspace,
    pub range: video_range_type,
}

Fields

name: *const c_charformat: video_formatfps_num: u32fps_den: u32width: u32height: u32cache_size: size_tcolorspace: video_colorspacerange: video_range_type

Trait Implementations

impl Clone for video_output_info[src]

impl Copy for video_output_info[src]

impl Debug for video_output_info[src]

impl Default for video_output_info[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.