Struct kernel_asound_sys::snd_seq_client_info[][src]

#[repr(C)]pub struct snd_seq_client_info {
    pub client: c_int,
    pub type_: snd_seq_client_type_t,
    pub name: [c_char; 64],
    pub filter: c_uint,
    pub multicast_filter: [c_uchar; 8],
    pub event_filter: [c_uchar; 32],
    pub num_ports: c_int,
    pub event_lost: c_int,
    pub card: c_int,
    pub pid: c_int,
    pub reserved: [c_char; 56],
}

Fields

client: c_inttype_: snd_seq_client_type_tname: [c_char; 64]filter: c_uintmulticast_filter: [c_uchar; 8]event_filter: [c_uchar; 32]num_ports: c_intevent_lost: c_intcard: c_intpid: c_intreserved: [c_char; 56]

Trait Implementations

impl Clone for snd_seq_client_info[src]

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