pub enum GetOneError {
NotFound {
method: &'static str,
ident: String,
},
MoreThanOne {
method: &'static str,
ident: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for GetOneError
impl Debug for GetOneError
Source§impl Display for GetOneError
impl Display for GetOneError
Source§impl Error for GetOneError
impl Error for GetOneError
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 GetOneErrorTrait for GetOneError
impl GetOneErrorTrait for GetOneError
fn is_not_found(&self) -> bool
fn is_more_than_one(&self) -> bool
Source§impl PartialEq for GetOneError
impl PartialEq for GetOneError
impl StructuralPartialEq for GetOneError
Auto Trait Implementations§
impl Freeze for GetOneError
impl RefUnwindSafe for GetOneError
impl Send for GetOneError
impl Sync for GetOneError
impl Unpin for GetOneError
impl UnwindSafe for GetOneError
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