#[repr(i32)]pub enum FfaError {
NotSupported = -1,
InvalidParameters = -2,
NoMemory = -3,
Busy = -4,
Interrupted = -5,
Denied = -6,
Retry = -7,
Aborted = -8,
NoData = -9,
}Expand description
Error status codes used by the FFA_ERROR interface.
Variants§
NotSupported = -1
InvalidParameters = -2
NoMemory = -3
Busy = -4
Interrupted = -5
Denied = -6
Retry = -7
Aborted = -8
NoData = -9
Trait Implementations§
Source§impl Error for FfaError
impl Error for FfaError
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 TryFromPrimitive for FfaError
impl TryFromPrimitive for FfaError
impl Copy for FfaError
impl Eq for FfaError
impl StructuralPartialEq for FfaError
Auto Trait Implementations§
impl Freeze for FfaError
impl RefUnwindSafe for FfaError
impl Send for FfaError
impl Sync for FfaError
impl Unpin for FfaError
impl UnwindSafe for FfaError
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