pub enum TellErrorKind {
InternalError,
NotFound,
Closed,
Full,
}
Variants§
Trait Implementations§
Source§impl Clone for TellErrorKind
impl Clone for TellErrorKind
Source§fn clone(&self) -> TellErrorKind
fn clone(&self) -> TellErrorKind
Returns a copy 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 TellErrorKind
impl Debug for TellErrorKind
Source§impl Display for TellErrorKind
impl Display for TellErrorKind
Source§impl Error for TellErrorKind
impl Error for TellErrorKind
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 HasErrorKind<TellErrorKind> for TellErrorKind
impl HasErrorKind<TellErrorKind> for TellErrorKind
Source§impl Hash for TellErrorKind
impl Hash for TellErrorKind
Source§impl Ord for TellErrorKind
impl Ord for TellErrorKind
Source§fn cmp(&self, other: &TellErrorKind) -> Ordering
fn cmp(&self, other: &TellErrorKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TellErrorKind
impl PartialEq for TellErrorKind
Source§impl PartialOrd for TellErrorKind
impl PartialOrd for TellErrorKind
impl Copy for TellErrorKind
impl Eq for TellErrorKind
impl StructuralPartialEq for TellErrorKind
Auto Trait Implementations§
impl Freeze for TellErrorKind
impl RefUnwindSafe for TellErrorKind
impl Send for TellErrorKind
impl Sync for TellErrorKind
impl Unpin for TellErrorKind
impl UnwindSafe for TellErrorKind
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