[][src]Struct dvbv5_sys::dvb_entry

#[repr(C)]pub struct dvb_entry {
    pub props: [dtv_property; 70],
    pub n_props: c_uint,
    pub next: *mut dvb_entry,
    pub service_id: u16,
    pub video_pid: *mut u16,
    pub audio_pid: *mut u16,
    pub other_el_pid: *mut dvb_elementary_pid,
    pub video_pid_len: c_uint,
    pub audio_pid_len: c_uint,
    pub other_el_pid_len: c_uint,
    pub channel: *mut c_char,
    pub vchannel: *mut c_char,
    pub location: *mut c_char,
    pub sat_number: c_int,
    pub freq_bpf: c_uint,
    pub diseqc_wait: c_uint,
    pub lnb: *mut c_char,
    pub network_id: u16,
    pub transport_id: u16,
}

Fields

props: [dtv_property; 70]n_props: c_uintnext: *mut dvb_entryservice_id: u16video_pid: *mut u16audio_pid: *mut u16other_el_pid: *mut dvb_elementary_pidvideo_pid_len: c_uintaudio_pid_len: c_uintother_el_pid_len: c_uintchannel: *mut c_charvchannel: *mut c_charlocation: *mut c_charsat_number: c_intfreq_bpf: c_uintdiseqc_wait: c_uintlnb: *mut c_charnetwork_id: u16transport_id: u16

Trait Implementations

impl Clone for dvb_entry[src]

impl Copy for dvb_entry[src]

impl Debug for dvb_entry[src]

A manually written implementation of Debug for dvb_entry.

Bindgen does not mark dvb_entry as #[derive(Debug)# because the props field is an array of 70 dtv_property items. Hence this manual realisation.

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.