#[repr(C)]pub enum config_error_t {
CONFIG_ERR_NONE = 0,
CONFIG_ERR_FILE_IO = 1,
CONFIG_ERR_PARSE = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for config_error_t
impl Clone for config_error_t
Source§fn clone(&self) -> config_error_t
fn clone(&self) -> config_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 config_error_t
Auto Trait Implementations§
impl Freeze for config_error_t
impl RefUnwindSafe for config_error_t
impl Send for config_error_t
impl Sync for config_error_t
impl Unpin for config_error_t
impl UnwindSafe for config_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