pub struct TlsCertificateResponseAttributes {
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub issued_to: Option<String>,
pub issuer: Option<String>,
pub serial_number: Option<String>,
pub signature_algorithm: Option<String>,
pub not_after: Option<String>,
pub not_before: Option<String>,
pub replace: Option<bool>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
issued_to: Option<String>
The hostname for which a certificate was issued.
issuer: Option<String>
The certificate authority that issued the certificate.
serial_number: Option<String>
A value assigned by the issuer that is unique to a certificate.
signature_algorithm: Option<String>
The algorithm used to sign the certificate.
not_after: Option<String>
Time-stamp (GMT) when the certificate will expire. Must be in the future to be used to terminate TLS traffic.
not_before: Option<String>
Time-stamp (GMT) when the certificate will become valid. Must be in the past to be used to terminate TLS traffic.
replace: Option<bool>
A recommendation from Fastly indicating the key associated with this certificate is in need of rotation.
Implementations§
Trait Implementations§
Source§impl Clone for TlsCertificateResponseAttributes
impl Clone for TlsCertificateResponseAttributes
Source§fn clone(&self) -> TlsCertificateResponseAttributes
fn clone(&self) -> TlsCertificateResponseAttributes
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 Default for TlsCertificateResponseAttributes
impl Default for TlsCertificateResponseAttributes
Source§fn default() -> TlsCertificateResponseAttributes
fn default() -> TlsCertificateResponseAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsCertificateResponseAttributes
impl<'de> Deserialize<'de> for TlsCertificateResponseAttributes
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 TlsCertificateResponseAttributes
impl PartialEq for TlsCertificateResponseAttributes
Source§fn eq(&self, other: &TlsCertificateResponseAttributes) -> bool
fn eq(&self, other: &TlsCertificateResponseAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TlsCertificateResponseAttributes
Auto Trait Implementations§
impl Freeze for TlsCertificateResponseAttributes
impl RefUnwindSafe for TlsCertificateResponseAttributes
impl Send for TlsCertificateResponseAttributes
impl Sync for TlsCertificateResponseAttributes
impl Unpin for TlsCertificateResponseAttributes
impl UnwindSafe for TlsCertificateResponseAttributes
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