pub enum AdapterApplyError {
MissingRef {
uid: Uid,
},
NotFound {
entity: String,
},
SchemaMismatch {
message: String,
},
Transport {
message: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for AdapterApplyError
impl Debug for AdapterApplyError
Source§impl Display for AdapterApplyError
impl Display for AdapterApplyError
Source§impl Error for AdapterApplyError
impl Error for AdapterApplyError
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 AdapterApplyError
impl RefUnwindSafe for AdapterApplyError
impl Send for AdapterApplyError
impl Sync for AdapterApplyError
impl Unpin for AdapterApplyError
impl UnsafeUnpin for AdapterApplyError
impl UnwindSafe for AdapterApplyError
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