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