#[repr(u8)]pub enum ListRc {
Success = 1,
OperationNotSupported = 2,
InvalidParameter = 3,
OperationFailed = 4,
OutOfBounds = 5,
TooManyObjects = 6,
NoObject = 7,
ObjectIdNotFound = 8,
}
Expand description
Object list operation result code
Variants§
Success = 1
Success
OperationNotSupported = 2
OperationNotSupported
InvalidParameter = 3
InvalidParameter
OperationFailed = 4
OperationFailed
OutOfBounds = 5
OutOfBounds
TooManyObjects = 6
TooManyObjects
NoObject = 7
NoObject
ObjectIdNotFound = 8
ObjectIdNotFound
Trait Implementations§
Source§impl Error for ListRc
impl Error for ListRc
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Ord for ListRc
impl Ord for ListRc
Source§impl PartialOrd for ListRc
impl PartialOrd for ListRc
impl Copy for ListRc
impl Eq for ListRc
impl StructuralPartialEq for ListRc
Auto Trait Implementations§
impl Freeze for ListRc
impl RefUnwindSafe for ListRc
impl Send for ListRc
impl Sync for ListRc
impl Unpin for ListRc
impl UnwindSafe for ListRc
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