pub struct ErrorNotFound {
pub error: Box<ErrorError>,
}Fields§
§error: Box<ErrorError>Implementations§
Source§impl ErrorNotFound
impl ErrorNotFound
pub fn new(error: ErrorError) -> ErrorNotFound
Trait Implementations§
Source§impl Clone for ErrorNotFound
impl Clone for ErrorNotFound
Source§fn clone(&self) -> ErrorNotFound
fn clone(&self) -> ErrorNotFound
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 ErrorNotFound
impl Debug for ErrorNotFound
Source§impl Default for ErrorNotFound
impl Default for ErrorNotFound
Source§fn default() -> ErrorNotFound
fn default() -> ErrorNotFound
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ErrorNotFound
impl<'de> Deserialize<'de> for ErrorNotFound
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ErrorNotFound
impl PartialEq for ErrorNotFound
Source§impl Serialize for ErrorNotFound
impl Serialize for ErrorNotFound
impl StructuralPartialEq for ErrorNotFound
Auto Trait Implementations§
impl Freeze for ErrorNotFound
impl RefUnwindSafe for ErrorNotFound
impl Send for ErrorNotFound
impl Sync for ErrorNotFound
impl Unpin for ErrorNotFound
impl UnwindSafe for ErrorNotFound
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