Struct fastly_api::models::tls_certificate_response_attributes::TlsCertificateResponseAttributes
source · 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 copy 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<TlsCertificateResponseAttributes> for TlsCertificateResponseAttributes
impl PartialEq<TlsCertificateResponseAttributes> for TlsCertificateResponseAttributes
source§fn eq(&self, other: &TlsCertificateResponseAttributes) -> bool
fn eq(&self, other: &TlsCertificateResponseAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TlsCertificateResponseAttributes
Auto Trait Implementations§
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