pub enum RSealMemError {
AllocationError,
SealError(RSealError),
InvalidParameters(&'static str),
}Expand description
Error type for memory sealing operations
Variants§
AllocationError
Error during allocation
SealError(RSealError)
Error during sealing
InvalidParameters(&'static str)
Invalid size or alignment
Trait Implementations§
Source§impl Debug for RSealMemError
impl Debug for RSealMemError
Source§impl Display for RSealMemError
impl Display for RSealMemError
Source§impl Error for RSealMemError
impl Error for RSealMemError
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()
Auto Trait Implementations§
impl Freeze for RSealMemError
impl !RefUnwindSafe for RSealMemError
impl Send for RSealMemError
impl Sync for RSealMemError
impl Unpin for RSealMemError
impl !UnwindSafe for RSealMemError
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