#[repr(u8)]pub enum ActionRc {
Success = 1,
OperationNotSupported = 2,
InvalidParameter = 3,
InsufficientResources = 4,
InvalidObject = 5,
ChannelUnavailable = 6,
UnsupportedType = 7,
ProcedureNotPermitted = 8,
ObjectLocked = 9,
OperationFailed = 10,
}
Expand description
Object action operation result code
Variants§
Success = 1
Success
OperationNotSupported = 2
OperationNotSupported
InvalidParameter = 3
InvalidParameter
InsufficientResources = 4
InsufficientResources
InvalidObject = 5
InvalidObject
ChannelUnavailable
UnsupportedType = 7
UnsupportedType
ProcedureNotPermitted = 8
ProcedureNotPermitted
ObjectLocked = 9
ObjectLocked
OperationFailed = 10
OperationFailed
Trait Implementations§
Source§impl Error for ActionRc
impl Error for ActionRc
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 ActionRc
impl Ord for ActionRc
Source§impl PartialOrd for ActionRc
impl PartialOrd for ActionRc
impl Copy for ActionRc
impl Eq for ActionRc
impl StructuralPartialEq for ActionRc
Auto Trait Implementations§
impl Freeze for ActionRc
impl RefUnwindSafe for ActionRc
impl Send for ActionRc
impl Sync for ActionRc
impl Unpin for ActionRc
impl UnwindSafe for ActionRc
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