[][src]Struct libucl_bind::ucl_object_t

#[repr(C)]
pub struct ucl_object_t {
    pub key: *const c_char,
    pub next: *mut ucl_object_t,
    pub prev: *mut ucl_object_t,
    pub keylen: u32,
    pub len: u32,
    pub rc: u32,
    pub flags: u16,
    pub real_type: u16,
    pub trash_stack: [*const c_char; 2],
    // some fields omitted
}

Fields

key: *const c_charnext: *mut ucl_object_tprev: *mut ucl_object_tkeylen: u32len: u32rc: u32flags: u16real_type: u16trash_stack: [*const c_char; 2]

Methods

impl ucl_object_t[src]

pub unsafe fn iv(&self) -> i64[src]

pub unsafe fn sv(&self) -> *const c_char[src]

pub unsafe fn dv(&self) -> c_double[src]

pub unsafe fn av(&self) -> *mut c_void[src]

pub unsafe fn ov(&self) -> *mut c_void[src]

pub unsafe fn uv(&self) -> *mut c_void[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, 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.