Struct double_map::dhash_map::EntryError
source · [−]Expand description
Fields
error: ErrorKindA view into an error kind returned by entry,
insert, try_insert methods of the DHashMap.
It is part of the EntryError structure, InsertError structure and TryInsertError
enum. Explains entry, insert,
try_insert methods fail. For more information about error
kind look at ErrorKind enum.
keys: (K1, K2)The provided values of keys that were returned because of error. For more information about
error kind look at ErrorKind enum.
Trait Implementations
sourceimpl<K1: Debug, K2: Debug> Debug for EntryError<K1, K2>
impl<K1: Debug, K2: Debug> Debug for EntryError<K1, K2>
sourceimpl<K1: Debug, K2: Debug> Display for EntryError<K1, K2>
impl<K1: Debug, K2: Debug> Display for EntryError<K1, K2>
sourceimpl<K1: Debug, K2: Debug> Error for EntryError<K1, K2>
impl<K1: Debug, K2: Debug> Error for EntryError<K1, K2>
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl<K1: PartialEq, K2: PartialEq> PartialEq<EntryError<K1, K2>> for EntryError<K1, K2>
impl<K1: PartialEq, K2: PartialEq> PartialEq<EntryError<K1, K2>> for EntryError<K1, K2>
sourcefn eq(&self, other: &EntryError<K1, K2>) -> bool
fn eq(&self, other: &EntryError<K1, K2>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EntryError<K1, K2>) -> bool
fn ne(&self, other: &EntryError<K1, K2>) -> bool
This method tests for !=.
impl<K1, K2> StructuralPartialEq for EntryError<K1, K2>
Auto Trait Implementations
impl<K1, K2> RefUnwindSafe for EntryError<K1, K2> where
K1: RefUnwindSafe,
K2: RefUnwindSafe,
impl<K1, K2> Send for EntryError<K1, K2> where
K1: Send,
K2: Send,
impl<K1, K2> Sync for EntryError<K1, K2> where
K1: Sync,
K2: Sync,
impl<K1, K2> Unpin for EntryError<K1, K2> where
K1: Unpin,
K2: Unpin,
impl<K1, K2> UnwindSafe for EntryError<K1, K2> where
K1: UnwindSafe,
K2: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more