#[repr(C)]pub enum ucl_emitter_t {
UCL_EMIT_JSON = 0,
UCL_EMIT_JSON_COMPACT = 1,
UCL_EMIT_CONFIG = 2,
UCL_EMIT_YAML = 3,
UCL_EMIT_MSGPACK = 4,
UCL_EMIT_MAX = 5,
}Variants§
UCL_EMIT_JSON = 0
UCL_EMIT_JSON_COMPACT = 1
UCL_EMIT_CONFIG = 2
UCL_EMIT_YAML = 3
UCL_EMIT_MSGPACK = 4
UCL_EMIT_MAX = 5
Trait Implementations§
Source§impl Clone for ucl_emitter_t
impl Clone for ucl_emitter_t
Source§fn clone(&self) -> ucl_emitter_t
fn clone(&self) -> ucl_emitter_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ucl_emitter_t
Auto Trait Implementations§
impl Freeze for ucl_emitter_t
impl RefUnwindSafe for ucl_emitter_t
impl Send for ucl_emitter_t
impl Sync for ucl_emitter_t
impl Unpin for ucl_emitter_t
impl UnwindSafe for ucl_emitter_t
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