Enum bluez_async_ots::ListRc
source · #[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)>
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 PartialEq for ListRc
impl PartialEq for ListRc
source§impl PartialOrd for ListRc
impl PartialOrd for ListRc
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for ListRc
impl Eq for ListRc
impl StructuralEq for ListRc
impl StructuralPartialEq for ListRc
Auto Trait Implementations§
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