pub enum DidErrorKind {
InvalidUri,
UnknownMethod {
msg: String,
},
}
Variants§
Trait Implementations§
Source§impl Clone for DidErrorKind
impl Clone for DidErrorKind
Source§fn clone(&self) -> DidErrorKind
fn clone(&self) -> DidErrorKind
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 DidErrorKind
impl Debug for DidErrorKind
Source§impl Display for DidErrorKind
impl Display for DidErrorKind
Source§impl Fail for DidErrorKind
impl Fail for DidErrorKind
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreSource§impl PartialEq for DidErrorKind
impl PartialEq for DidErrorKind
impl Eq for DidErrorKind
impl StructuralPartialEq for DidErrorKind
Auto Trait Implementations§
impl Freeze for DidErrorKind
impl RefUnwindSafe for DidErrorKind
impl Send for DidErrorKind
impl Sync for DidErrorKind
impl Unpin for DidErrorKind
impl UnwindSafe for DidErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<E> DidErrorExt for Ewhere
E: Fail,
impl<E> DidErrorExt for Ewhere
E: Fail,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.