pub struct AppServiceError {
pub source: String,
pub kind: AppServiceErrorKind,
pub code: String,
pub message: String,
}Fields§
§source: String§kind: AppServiceErrorKind§code: String§message: StringImplementations§
Trait Implementations§
Source§impl Clone for AppServiceError
impl Clone for AppServiceError
Source§fn clone(&self) -> AppServiceError
fn clone(&self) -> AppServiceError
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 AppServiceError
impl Debug for AppServiceError
Source§impl<'de> Deserialize<'de> for AppServiceError
impl<'de> Deserialize<'de> for AppServiceError
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 Display for AppServiceError
impl Display for AppServiceError
Source§impl Error for AppServiceError
impl Error for AppServiceError
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 PartialEq for AppServiceError
impl PartialEq for AppServiceError
Source§fn eq(&self, other: &AppServiceError) -> bool
fn eq(&self, other: &AppServiceError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AppServiceError
impl Serialize for AppServiceError
impl Eq for AppServiceError
impl StructuralPartialEq for AppServiceError
Auto Trait Implementations§
impl Freeze for AppServiceError
impl RefUnwindSafe for AppServiceError
impl Send for AppServiceError
impl Sync for AppServiceError
impl Unpin for AppServiceError
impl UnsafeUnpin for AppServiceError
impl UnwindSafe for AppServiceError
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