pub struct IdLookupError(/* private fields */);
Expand description
A simple error type for failed id lookups
Trait Implementations§
Source§impl Clone for IdLookupError
impl Clone for IdLookupError
Source§fn clone(&self) -> IdLookupError
fn clone(&self) -> IdLookupError
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 IdLookupError
impl Debug for IdLookupError
Source§impl Display for IdLookupError
impl Display for IdLookupError
Source§impl Error for IdLookupError
impl Error for IdLookupError
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()
impl Copy for IdLookupError
Auto Trait Implementations§
impl Freeze for IdLookupError
impl RefUnwindSafe for IdLookupError
impl Send for IdLookupError
impl Sync for IdLookupError
impl Unpin for IdLookupError
impl UnwindSafe for IdLookupError
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