Struct kernel_asound_sys::snd_seq_port_info[][src]

#[repr(C)]pub struct snd_seq_port_info {
    pub addr: snd_seq_addr,
    pub name: [c_char; 64],
    pub capability: c_uint,
    pub type_: c_uint,
    pub midi_channels: c_int,
    pub midi_voices: c_int,
    pub synth_voices: c_int,
    pub read_use: c_int,
    pub write_use: c_int,
    pub kernel: *mut c_void,
    pub flags: c_uint,
    pub time_queue: c_uchar,
    pub reserved: [c_char; 59],
}

Fields

addr: snd_seq_addrname: [c_char; 64]capability: c_uinttype_: c_uintmidi_channels: c_intmidi_voices: c_intsynth_voices: c_intread_use: c_intwrite_use: c_intkernel: *mut c_voidflags: c_uinttime_queue: c_ucharreserved: [c_char; 59]

Trait Implementations

impl Clone for snd_seq_port_info[src]

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