pub struct ValidateCertificateChallengeOutput {
pub cert: Option<String>,
pub cert_display_id: Option<String>,
pub cert_item_id: Option<i64>,
pub status: Option<String>,
}Expand description
ValidateCertificateChallengeOutput : ValidateCertificateChallengeOutput defines output for HTTP-01 challenge validation
Fields§
§cert: Option<String>§cert_display_id: Option<String>§cert_item_id: Option<i64>§status: Option<String>Implementations§
Source§impl ValidateCertificateChallengeOutput
impl ValidateCertificateChallengeOutput
Sourcepub fn new() -> ValidateCertificateChallengeOutput
pub fn new() -> ValidateCertificateChallengeOutput
ValidateCertificateChallengeOutput defines output for HTTP-01 challenge validation
Trait Implementations§
Source§impl Clone for ValidateCertificateChallengeOutput
impl Clone for ValidateCertificateChallengeOutput
Source§fn clone(&self) -> ValidateCertificateChallengeOutput
fn clone(&self) -> ValidateCertificateChallengeOutput
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 Default for ValidateCertificateChallengeOutput
impl Default for ValidateCertificateChallengeOutput
Source§fn default() -> ValidateCertificateChallengeOutput
fn default() -> ValidateCertificateChallengeOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidateCertificateChallengeOutput
impl<'de> Deserialize<'de> for ValidateCertificateChallengeOutput
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 ValidateCertificateChallengeOutput
impl PartialEq for ValidateCertificateChallengeOutput
Source§fn eq(&self, other: &ValidateCertificateChallengeOutput) -> bool
fn eq(&self, other: &ValidateCertificateChallengeOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidateCertificateChallengeOutput
Auto Trait Implementations§
impl Freeze for ValidateCertificateChallengeOutput
impl RefUnwindSafe for ValidateCertificateChallengeOutput
impl Send for ValidateCertificateChallengeOutput
impl Sync for ValidateCertificateChallengeOutput
impl Unpin for ValidateCertificateChallengeOutput
impl UnsafeUnpin for ValidateCertificateChallengeOutput
impl UnwindSafe for ValidateCertificateChallengeOutput
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