pub struct ErrorResponse {
pub code: ErrorCode,
pub error: Option<String>,
pub detail: Option<String>,
}
Expand description
CDK Error Response
See NUT definition in 00
Fields§
§code: ErrorCode
Error Code
error: Option<String>
Human readable Text
detail: Option<String>
Longer human readable description
Implementations§
Source§impl ErrorResponse
impl ErrorResponse
Trait Implementations§
Source§impl Clone for ErrorResponse
impl Clone for ErrorResponse
Source§fn clone(&self) -> ErrorResponse
fn clone(&self) -> ErrorResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ErrorResponse
impl Debug for ErrorResponse
Source§impl<'de> Deserialize<'de> for ErrorResponse
impl<'de> Deserialize<'de> for ErrorResponse
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 ErrorResponse
impl Display for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§fn from(err: Error) -> ErrorResponse
fn from(err: Error) -> ErrorResponse
Converts to this type from the input type.
Source§impl From<ErrorResponse> for Error
impl From<ErrorResponse> for Error
Source§fn from(err: ErrorResponse) -> Error
fn from(err: ErrorResponse) -> Error
Converts to this type from the input type.
Source§impl PartialEq for ErrorResponse
impl PartialEq for ErrorResponse
Source§impl Serialize for ErrorResponse
impl Serialize for ErrorResponse
impl Eq for ErrorResponse
impl StructuralPartialEq for ErrorResponse
Auto Trait Implementations§
impl Freeze for ErrorResponse
impl RefUnwindSafe for ErrorResponse
impl Send for ErrorResponse
impl Sync for ErrorResponse
impl Unpin for ErrorResponse
impl UnwindSafe for ErrorResponse
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