[][src]Struct libconfig_sys::config_t

#[repr(C)]pub struct config_t {
    pub root: *mut config_setting_t,
    pub destructor: Option<extern "C" fn(_: *mut c_void)>,
    pub tab_width: c_ushort,
    pub default_format: c_short,
    pub include_dir: *const c_schar,
    pub error_text: *const c_schar,
    pub error_file: *const c_schar,
    pub error_line: c_int,
    pub error_type: config_error_t,
    pub filenames: *mut *mut c_schar,
    pub num_filenames: c_uint,
}

Fields

root: *mut config_setting_tdestructor: Option<extern "C" fn(_: *mut c_void)>tab_width: c_ushortdefault_format: c_shortinclude_dir: *const c_scharerror_text: *const c_scharerror_file: *const c_scharerror_line: c_interror_type: config_error_tfilenames: *mut *mut c_scharnum_filenames: c_uint

Auto Trait Implementations

impl RefUnwindSafe for config_t

impl !Send for config_t

impl !Sync for config_t

impl Unpin for config_t

impl UnwindSafe for config_t

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, 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.