pub enum OutputError {
Read(DeriveError),
Message(String),
}Expand description
User-defined output materialization failure.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OutputError
impl Clone for OutputError
Source§fn clone(&self) -> OutputError
fn clone(&self) -> OutputError
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 OutputError
impl Debug for OutputError
impl Eq for OutputError
Source§impl From<DeriveError> for OutputError
impl From<DeriveError> for OutputError
Source§fn from(error: DeriveError) -> Self
fn from(error: DeriveError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OutputError
impl PartialEq for OutputError
Source§fn eq(&self, other: &OutputError) -> bool
fn eq(&self, other: &OutputError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutputError
Auto Trait Implementations§
impl Freeze for OutputError
impl RefUnwindSafe for OutputError
impl Send for OutputError
impl Sync for OutputError
impl Unpin for OutputError
impl UnsafeUnpin for OutputError
impl UnwindSafe for OutputError
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