#[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§
impl Freeze for ucl_emitter_functions
impl RefUnwindSafe for ucl_emitter_functions
impl !Send for ucl_emitter_functions
impl !Sync for ucl_emitter_functions
impl Unpin for ucl_emitter_functions
impl UnwindSafe for ucl_emitter_functions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more