pub struct ProblemDocument {
pub type_: ErrorType,
pub detail: String,
pub identifier: Option<Identifier>,
}Expand description
Defines an ACME error problem document object
For more information, refer to RFC 8555 § 6.7.1
Fields§
§type_: ErrorTypeError type
detail: StringError description
identifier: Option<Identifier>Optional order identifier associated with the error
Trait Implementations§
Source§impl Clone for ProblemDocument
impl Clone for ProblemDocument
Source§fn clone(&self) -> ProblemDocument
fn clone(&self) -> ProblemDocument
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 ProblemDocument
impl Debug for ProblemDocument
Source§impl<'de> Deserialize<'de> for ProblemDocument
impl<'de> Deserialize<'de> for ProblemDocument
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
Auto Trait Implementations§
impl Freeze for ProblemDocument
impl RefUnwindSafe for ProblemDocument
impl Send for ProblemDocument
impl Sync for ProblemDocument
impl Unpin for ProblemDocument
impl UnwindSafe for ProblemDocument
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