pub struct ActualCertificateAllOf {
pub distinguished_name: String,
pub dns_names: Vec<String>,
pub not_after: DateTime<Utc>,
pub not_before: DateTime<Utc>,
pub serial_number: String,
}Expand description
ActualCertificateAllOf
JSON schema
{
"type": "object",
"required": [
"distinguishedName",
"dnsNames",
"notAfter",
"notBefore",
"serialNumber"
],
"properties": {
"distinguishedName": {
"type": "string"
},
"dnsNames": {
"type": "array",
"items": {
"type": "string"
}
},
"notAfter": {
"type": "string",
"format": "date-time"
},
"notBefore": {
"type": "string",
"format": "date-time"
},
"serialNumber": {
"type": "string"
}
}
}Fields§
§distinguished_name: String§dns_names: Vec<String>§not_after: DateTime<Utc>§not_before: DateTime<Utc>§serial_number: StringImplementations§
Source§impl ActualCertificateAllOf
impl ActualCertificateAllOf
pub fn builder() -> ActualCertificateAllOf
Trait Implementations§
Source§impl Clone for ActualCertificateAllOf
impl Clone for ActualCertificateAllOf
Source§fn clone(&self) -> ActualCertificateAllOf
fn clone(&self) -> ActualCertificateAllOf
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 ActualCertificateAllOf
impl Debug for ActualCertificateAllOf
Source§impl<'de> Deserialize<'de> for ActualCertificateAllOf
impl<'de> Deserialize<'de> for ActualCertificateAllOf
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 From<ActualCertificateAllOf> for ActualCertificateAllOf
impl From<ActualCertificateAllOf> for ActualCertificateAllOf
Source§fn from(value: ActualCertificateAllOf) -> Self
fn from(value: ActualCertificateAllOf) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ActualCertificateAllOf
impl PartialEq for ActualCertificateAllOf
Source§fn eq(&self, other: &ActualCertificateAllOf) -> bool
fn eq(&self, other: &ActualCertificateAllOf) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActualCertificateAllOf
impl Serialize for ActualCertificateAllOf
Source§impl TryFrom<ActualCertificateAllOf> for ActualCertificateAllOf
impl TryFrom<ActualCertificateAllOf> for ActualCertificateAllOf
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ActualCertificateAllOf) -> Result<Self, ConversionError>
fn try_from(value: ActualCertificateAllOf) -> Result<Self, ConversionError>
Performs the conversion.
impl StructuralPartialEq for ActualCertificateAllOf
Auto Trait Implementations§
impl Freeze for ActualCertificateAllOf
impl RefUnwindSafe for ActualCertificateAllOf
impl Send for ActualCertificateAllOf
impl Sync for ActualCertificateAllOf
impl Unpin for ActualCertificateAllOf
impl UnsafeUnpin for ActualCertificateAllOf
impl UnwindSafe for ActualCertificateAllOf
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more