pub enum KernelInteropError {
MissingVector {
id: usize,
},
}Expand description
Errors from kernel↔VSA interop helpers.
Variants§
Trait Implementations§
Source§impl Clone for KernelInteropError
impl Clone for KernelInteropError
Source§fn clone(&self) -> KernelInteropError
fn clone(&self) -> KernelInteropError
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 KernelInteropError
impl Debug for KernelInteropError
Source§impl Display for KernelInteropError
impl Display for KernelInteropError
Source§impl Error for KernelInteropError
impl Error for KernelInteropError
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 PartialEq for KernelInteropError
impl PartialEq for KernelInteropError
impl Eq for KernelInteropError
impl StructuralPartialEq for KernelInteropError
Auto Trait Implementations§
impl Freeze for KernelInteropError
impl RefUnwindSafe for KernelInteropError
impl Send for KernelInteropError
impl Sync for KernelInteropError
impl Unpin for KernelInteropError
impl UnwindSafe for KernelInteropError
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