[][src]Struct libconfig_sys::config_setting_t

#[repr(C)]pub struct config_setting_t {
    pub name: *mut c_schar,
    pub setting_type: c_short,
    pub format: c_short,
    pub value: config_value_t,
    pub parent: *mut config_setting_t,
    pub config: *mut config_t,
    pub hook: *mut c_void,
    pub line: c_uint,
    pub file: *const c_schar,
}

Fields

name: *mut c_scharsetting_type: c_shortformat: c_shortvalue: config_value_tparent: *mut config_setting_tconfig: *mut config_thook: *mut c_voidline: c_uintfile: *const c_schar

Trait Implementations

impl Clone for config_setting_t[src]

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