#[repr(C)]pub enum ucl_error_t {
UCL_EOK = 0,
UCL_ESYNTAX = 1,
UCL_EIO = 2,
UCL_ESTATE = 3,
UCL_ENESTED = 4,
UCL_EMACRO = 5,
UCL_EINTERNAL = 6,
UCL_ESSL = 7,
}Variants§
UCL_EOK = 0
UCL_ESYNTAX = 1
UCL_EIO = 2
UCL_ESTATE = 3
UCL_ENESTED = 4
UCL_EMACRO = 5
UCL_EINTERNAL = 6
UCL_ESSL = 7
Trait Implementations§
Source§impl Clone for ucl_error_t
impl Clone for ucl_error_t
Source§fn clone(&self) -> ucl_error_t
fn clone(&self) -> ucl_error_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_error_t
Auto Trait Implementations§
impl Freeze for ucl_error_t
impl RefUnwindSafe for ucl_error_t
impl Send for ucl_error_t
impl Sync for ucl_error_t
impl Unpin for ucl_error_t
impl UnwindSafe for ucl_error_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