Struct kernel_asound_sys::snd_ctl_card_info[][src]

#[repr(C)]pub struct snd_ctl_card_info {
    pub card: c_int,
    pub pad: c_int,
    pub id: [c_uchar; 16],
    pub driver: [c_uchar; 16],
    pub name: [c_uchar; 32],
    pub longname: [c_uchar; 80],
    pub reserved_: [c_uchar; 16],
    pub mixername: [c_uchar; 80],
    pub components: [c_uchar; 128],
}

Fields

card: c_intpad: c_intid: [c_uchar; 16]driver: [c_uchar; 16]name: [c_uchar; 32]longname: [c_uchar; 80]reserved_: [c_uchar; 16]mixername: [c_uchar; 80]components: [c_uchar; 128]

Trait Implementations

impl Clone for snd_ctl_card_info[src]

impl Copy for snd_ctl_card_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.