pub enum EntryHandleError {
EntryDoesNotExist,
}Expand description
Defines a failure that can occur when a EntryHandle is created with Reader::entry().
Variants§
EntryDoesNotExist
The entry with the given key and value type does not exist.
Trait Implementations§
Source§impl Clone for EntryHandleError
impl Clone for EntryHandleError
Source§fn clone(&self) -> EntryHandleError
fn clone(&self) -> EntryHandleError
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 moreimpl Copy for EntryHandleError
Source§impl Debug for EntryHandleError
impl Debug for EntryHandleError
Source§impl Display for EntryHandleError
impl Display for EntryHandleError
impl Eq for EntryHandleError
Source§impl Error for EntryHandleError
impl Error for EntryHandleError
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 PartialEq for EntryHandleError
impl PartialEq for EntryHandleError
impl StructuralPartialEq for EntryHandleError
Auto Trait Implementations§
impl Freeze for EntryHandleError
impl RefUnwindSafe for EntryHandleError
impl Send for EntryHandleError
impl Sync for EntryHandleError
impl Unpin for EntryHandleError
impl UnsafeUnpin for EntryHandleError
impl UnwindSafe for EntryHandleError
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