pub struct TlsCertificateResponseAttributesAllOf {
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§
§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 TlsCertificateResponseAttributesAllOf
impl Clone for TlsCertificateResponseAttributesAllOf
Source§fn clone(&self) -> TlsCertificateResponseAttributesAllOf
fn clone(&self) -> TlsCertificateResponseAttributesAllOf
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 TlsCertificateResponseAttributesAllOf
impl Default for TlsCertificateResponseAttributesAllOf
Source§fn default() -> TlsCertificateResponseAttributesAllOf
fn default() -> TlsCertificateResponseAttributesAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsCertificateResponseAttributesAllOf
impl<'de> Deserialize<'de> for TlsCertificateResponseAttributesAllOf
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 TlsCertificateResponseAttributesAllOf
impl PartialEq for TlsCertificateResponseAttributesAllOf
Source§fn eq(&self, other: &TlsCertificateResponseAttributesAllOf) -> bool
fn eq(&self, other: &TlsCertificateResponseAttributesAllOf) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TlsCertificateResponseAttributesAllOf
Auto Trait Implementations§
impl Freeze for TlsCertificateResponseAttributesAllOf
impl RefUnwindSafe for TlsCertificateResponseAttributesAllOf
impl Send for TlsCertificateResponseAttributesAllOf
impl Sync for TlsCertificateResponseAttributesAllOf
impl Unpin for TlsCertificateResponseAttributesAllOf
impl UnwindSafe for TlsCertificateResponseAttributesAllOf
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