#[non_exhaustive]pub struct ManagedCertificate {
pub last_renewal_time: Option<Timestamp>,
pub status: ManagementStatus,
/* private fields */
}Expand description
A certificate managed by App Engine.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.last_renewal_time: Option<Timestamp>Time at which the certificate was last renewed. The renewal process is
fully managed. Certificate renewal will automatically occur before the
certificate expires. Renewal errors can be tracked via ManagementStatus.
@OutputOnly
status: ManagementStatusStatus of certificate management. Refers to the most recent certificate acquisition or renewal attempt.
@OutputOnly
Implementations§
Source§impl ManagedCertificate
impl ManagedCertificate
pub fn new() -> Self
Sourcepub fn set_last_renewal_time<T>(self, v: T) -> Self
pub fn set_last_renewal_time<T>(self, v: T) -> Self
Sets the value of last_renewal_time.
Sourcepub fn set_or_clear_last_renewal_time<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_last_renewal_time<T>(self, v: Option<T>) -> Self
Sets or clears the value of last_renewal_time.
Sourcepub fn set_status<T: Into<ManagementStatus>>(self, v: T) -> Self
pub fn set_status<T: Into<ManagementStatus>>(self, v: T) -> Self
Sets the value of status.
Trait Implementations§
Source§impl Clone for ManagedCertificate
impl Clone for ManagedCertificate
Source§fn clone(&self) -> ManagedCertificate
fn clone(&self) -> ManagedCertificate
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 Debug for ManagedCertificate
impl Debug for ManagedCertificate
Source§impl Default for ManagedCertificate
impl Default for ManagedCertificate
Source§fn default() -> ManagedCertificate
fn default() -> ManagedCertificate
Returns the “default value” for a type. Read more
Source§impl Message for ManagedCertificate
impl Message for ManagedCertificate
Source§impl PartialEq for ManagedCertificate
impl PartialEq for ManagedCertificate
impl StructuralPartialEq for ManagedCertificate
Auto Trait Implementations§
impl Freeze for ManagedCertificate
impl RefUnwindSafe for ManagedCertificate
impl Send for ManagedCertificate
impl Sync for ManagedCertificate
impl Unpin for ManagedCertificate
impl UnwindSafe for ManagedCertificate
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