[][src]Struct dvbv5_sys::dvb_v5_fe_parms

#[repr(C)]pub struct dvb_v5_fe_parms {
    pub info: dvb_frontend_info,
    pub version: u32,
    pub has_v5_stats: c_int,
    pub current_sys: fe_delivery_system_t,
    pub num_systems: c_int,
    pub systems: [fe_delivery_system_t; 20],
    pub legacy_fe: c_int,
    pub abort: c_int,
    pub lna: c_int,
    pub lnb: *const dvb_sat_lnb,
    pub sat_number: c_int,
    pub freq_bpf: c_uint,
    pub diseqc_wait: c_uint,
    pub verbose: c_uint,
    pub logfunc: dvb_logfunc,
    pub default_charset: *mut c_char,
    pub output_charset: *mut c_char,
}

Fields

info: dvb_frontend_infoversion: u32has_v5_stats: c_intcurrent_sys: fe_delivery_system_tnum_systems: c_intsystems: [fe_delivery_system_t; 20]legacy_fe: c_intabort: c_intlna: c_intlnb: *const dvb_sat_lnbsat_number: c_intfreq_bpf: c_uintdiseqc_wait: c_uintverbose: c_uintlogfunc: dvb_logfuncdefault_charset: *mut c_charoutput_charset: *mut c_char

Trait Implementations

impl Clone for dvb_v5_fe_parms[src]

impl Copy for dvb_v5_fe_parms[src]

impl Debug for dvb_v5_fe_parms[src]

A manually written impementation of Debug for dvb_v5_fe_parms.

Bindgen does not mark dvb_v5_fe_parms as #[derive(Debug)# because the info field is a dvb_frontend_info which is not marked #[derive(Debug)]. 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.