pub enum KernelEvalError {
InvalidDocument(String),
InvalidInput(String),
SerializeOutput(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for KernelEvalError
impl Clone for KernelEvalError
Source§fn clone(&self) -> KernelEvalError
fn clone(&self) -> KernelEvalError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KernelEvalError
impl Debug for KernelEvalError
Source§impl Display for KernelEvalError
impl Display for KernelEvalError
impl Eq for KernelEvalError
Source§impl Error for KernelEvalError
impl Error for KernelEvalError
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 KernelEvalError
impl PartialEq for KernelEvalError
Source§fn eq(&self, other: &KernelEvalError) -> bool
fn eq(&self, other: &KernelEvalError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KernelEvalError
Auto Trait Implementations§
impl Freeze for KernelEvalError
impl RefUnwindSafe for KernelEvalError
impl Send for KernelEvalError
impl Sync for KernelEvalError
impl Unpin for KernelEvalError
impl UnsafeUnpin for KernelEvalError
impl UnwindSafe for KernelEvalError
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