[][src]Struct libucl_bind::ucl_emitter_functions

#[repr(C)]
pub struct ucl_emitter_functions {
    pub ucl_emitter_append_character: Option<extern "C" fn(_: c_uchar, _: size_t, _: *mut c_void) -> c_int>,
    pub ucl_emitter_append_len: Option<extern "C" fn(_: *const c_uchar, _: size_t, _: *mut c_void) -> c_int>,
    pub ucl_emitter_append_int: Option<extern "C" fn(_: i64, _: *mut c_void) -> c_int>,
    pub ucl_emitter_append_double: Option<extern "C" fn(_: c_double, _: *mut c_void) -> c_int>,
    pub ucl_emitter_free_func: Option<extern "C" fn(_: *mut c_void)>,
    pub ud: *mut c_void,
}

Fields

ucl_emitter_append_character: Option<extern "C" fn(_: c_uchar, _: size_t, _: *mut c_void) -> c_int>ucl_emitter_append_len: Option<extern "C" fn(_: *const c_uchar, _: size_t, _: *mut c_void) -> c_int>ucl_emitter_append_int: Option<extern "C" fn(_: i64, _: *mut c_void) -> c_int>ucl_emitter_append_double: Option<extern "C" fn(_: c_double, _: *mut c_void) -> c_int>ucl_emitter_free_func: Option<extern "C" fn(_: *mut c_void)>ud: *mut c_void

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.