Struct wasefire_error::Error
source · pub struct Error(/* private fields */);Expand description
API errors.
Errors are equivalent to u32 but only using the 24 least significant bits: 8 bits for the
error space and 16 bits for the error code. The 8 most significant bits are zero. It is possible
to encode a Result<u32, Error> into a i32 as long as the success value only uses the 31
least significant bits. Non-negative values encode success, while negative values encode the
error by taking its bitwise complement (thus setting the 8 most significant bits to 1).
Implementations§
source§impl Error
impl Error
sourcepub fn new(space: impl SpaceParam, code: impl CodeParam) -> Self
pub fn new(space: impl SpaceParam, code: impl CodeParam) -> Self
Creates a new error.
sourcepub fn decode(result: i32) -> Result<u32, Self>
pub fn decode(result: i32) -> Result<u32, Self>
Decodes a signed integer as a result (where errors are negative values).
§Panics
Panics if the signed integer is smaller than -16777216 (0xff000000).
Trait Implementations§
source§impl Error for Error
impl Error for Error
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 Error
impl Ord for Error
source§impl PartialEq for Error
impl PartialEq for Error
source§impl PartialOrd for Error
impl PartialOrd for Error
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 Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)