pub struct NotFoundError {
pub got: String,
pub suggestion: Option<String>,
}Fields§
§got: String§suggestion: Option<String>Trait Implementations§
Source§impl Clone for NotFoundError
impl Clone for NotFoundError
Source§fn clone(&self) -> NotFoundError
fn clone(&self) -> NotFoundError
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 NotFoundError
impl Debug for NotFoundError
Source§impl Display for NotFoundError
impl Display for NotFoundError
Source§impl From<NotFoundError> for QueryError
impl From<NotFoundError> for QueryError
Source§fn from(v: NotFoundError) -> Self
fn from(v: NotFoundError) -> Self
Converts to this type from the input type.
Source§impl Serialize for NotFoundError
impl Serialize for NotFoundError
Auto Trait Implementations§
impl Freeze for NotFoundError
impl RefUnwindSafe for NotFoundError
impl Send for NotFoundError
impl Sync for NotFoundError
impl Unpin for NotFoundError
impl UnwindSafe for NotFoundError
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