[][src]Struct ffmpeg_sys_next::AVDeviceInfoList

#[repr(C)]pub struct AVDeviceInfoList {
    pub devices: *mut *mut AVDeviceInfo,
    pub nb_devices: c_int,
    pub default_device: c_int,
}

List of devices.

Fields

devices: *mut *mut AVDeviceInfo

< list of autodetected devices

nb_devices: c_int

< number of autodetected devices

default_device: c_int

< index of default device or -1 if no default

Trait Implementations

impl Clone for AVDeviceInfoList[src]

impl Copy for AVDeviceInfoList[src]

impl Debug for AVDeviceInfoList[src]

impl Eq for AVDeviceInfoList[src]

impl PartialEq<AVDeviceInfoList> for AVDeviceInfoList[src]

impl StructuralEq for AVDeviceInfoList[src]

impl StructuralPartialEq for AVDeviceInfoList[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.