#[repr(C)]pub enum ucl_type_t {
UCL_OBJECT = 0,
UCL_ARRAY = 1,
UCL_INT = 2,
UCL_FLOAT = 3,
UCL_STRING = 4,
UCL_BOOLEAN = 5,
UCL_TIME = 6,
UCL_USERDATA = 7,
UCL_NULL = 8,
}
Variants§
UCL_OBJECT = 0
UCL_ARRAY = 1
UCL_INT = 2
UCL_FLOAT = 3
UCL_STRING = 4
UCL_BOOLEAN = 5
UCL_TIME = 6
UCL_USERDATA = 7
UCL_NULL = 8
Trait Implementations§
Source§impl Clone for ucl_type_t
impl Clone for ucl_type_t
Source§fn clone(&self) -> ucl_type_t
fn clone(&self) -> ucl_type_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_type_t
Auto Trait Implementations§
impl Freeze for ucl_type_t
impl RefUnwindSafe for ucl_type_t
impl Send for ucl_type_t
impl Sync for ucl_type_t
impl Unpin for ucl_type_t
impl UnwindSafe for ucl_type_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