#[repr(i32)]pub enum EnumMgmtErrCode {
ENUM_MGMT_ERR_OK = 0,
ENUM_MGMT_ERR_UNKNOWN = 1,
ENUM_MGMT_ERR_TOO_MANY_GROUP_ENTRIES = 2,
ENUM_MGMT_ERR_INSUFFICIENT_HEAP_FOR_ENTRIES = 3,
ENUM_MGMT_ERR_INDEX_TOO_LARGE = 4,
}Expand description
See enum enum_mgmt_err_code_t.
Variants§
ENUM_MGMT_ERR_OK = 0
No error, this is implied if there is no ret value in the response
ENUM_MGMT_ERR_UNKNOWN = 1
Unknown error occurred.
ENUM_MGMT_ERR_TOO_MANY_GROUP_ENTRIES = 2
Too many entries were provided.
ENUM_MGMT_ERR_INSUFFICIENT_HEAP_FOR_ENTRIES = 3
Insufficient heap memory to store entry data.
ENUM_MGMT_ERR_INDEX_TOO_LARGE = 4
Provided index is larger than the number of supported grouped.
Implementations§
Trait Implementations§
Source§impl Clone for EnumMgmtErrCode
impl Clone for EnumMgmtErrCode
Source§fn clone(&self) -> EnumMgmtErrCode
fn clone(&self) -> EnumMgmtErrCode
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 moreSource§impl Debug for EnumMgmtErrCode
impl Debug for EnumMgmtErrCode
Source§impl Display for EnumMgmtErrCode
impl Display for EnumMgmtErrCode
Source§impl PartialEq for EnumMgmtErrCode
impl PartialEq for EnumMgmtErrCode
impl Copy for EnumMgmtErrCode
impl Eq for EnumMgmtErrCode
impl StructuralPartialEq for EnumMgmtErrCode
Auto Trait Implementations§
impl Freeze for EnumMgmtErrCode
impl RefUnwindSafe for EnumMgmtErrCode
impl Send for EnumMgmtErrCode
impl Sync for EnumMgmtErrCode
impl Unpin for EnumMgmtErrCode
impl UnwindSafe for EnumMgmtErrCode
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