pub struct DataNotFoundError {
pub code: Option<f64>,
pub name: Option<String>,
pub error_msg: Option<String>,
}Fields§
§code: Option<f64>§name: Option<String>§error_msg: Option<String>Trait Implementations§
Source§impl Clone for DataNotFoundError
impl Clone for DataNotFoundError
Source§fn clone(&self) -> DataNotFoundError
fn clone(&self) -> DataNotFoundError
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 moreSource§impl Debug for DataNotFoundError
impl Debug for DataNotFoundError
Source§impl<'de> Deserialize<'de> for DataNotFoundError
impl<'de> Deserialize<'de> for DataNotFoundError
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 DataNotFoundError
impl PartialEq for DataNotFoundError
Source§fn eq(&self, other: &DataNotFoundError) -> bool
fn eq(&self, other: &DataNotFoundError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataNotFoundError
impl Serialize for DataNotFoundError
impl StructuralPartialEq for DataNotFoundError
Auto Trait Implementations§
impl Freeze for DataNotFoundError
impl RefUnwindSafe for DataNotFoundError
impl Send for DataNotFoundError
impl Sync for DataNotFoundError
impl Unpin for DataNotFoundError
impl UnsafeUnpin for DataNotFoundError
impl UnwindSafe for DataNotFoundError
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