pub enum ShadowError {
OutOfBounds,
ZeroLength,
Denied,
StageFull,
}Expand description
Errors that can occur during shadow table operations.
Variants§
OutOfBounds
Address or length exceeds table bounds.
ZeroLength
Operation attempted with zero length.
Denied
Access denied by policy.
StageFull
Staging buffer capacity exceeded.
Trait Implementations§
Source§impl Clone for ShadowError
impl Clone for ShadowError
Source§fn clone(&self) -> ShadowError
fn clone(&self) -> ShadowError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ShadowError
impl Debug for ShadowError
Source§impl PartialEq for ShadowError
impl PartialEq for ShadowError
impl Copy for ShadowError
impl Eq for ShadowError
impl StructuralPartialEq for ShadowError
Auto Trait Implementations§
impl Freeze for ShadowError
impl RefUnwindSafe for ShadowError
impl Send for ShadowError
impl Sync for ShadowError
impl Unpin for ShadowError
impl UnwindSafe for ShadowError
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