pub struct AgentIngressCertStatus {
pub renews_at: Option<String>,
pub provisioning_job: Option<AgentIngressCertJob>,
}
Fields§
§renews_at: Option<String>
timestamp when the next renewal will be requested, RFC 3339 format
provisioning_job: Option<AgentIngressCertJob>
status of the certificate provisioning job, or null if the certificiate isn’t being provisioned or renewed
Trait Implementations§
Source§impl Clone for AgentIngressCertStatus
impl Clone for AgentIngressCertStatus
Source§fn clone(&self) -> AgentIngressCertStatus
fn clone(&self) -> AgentIngressCertStatus
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 AgentIngressCertStatus
impl Debug for AgentIngressCertStatus
Source§impl Default for AgentIngressCertStatus
impl Default for AgentIngressCertStatus
Source§fn default() -> AgentIngressCertStatus
fn default() -> AgentIngressCertStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentIngressCertStatus
impl<'de> Deserialize<'de> for AgentIngressCertStatus
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
Auto Trait Implementations§
impl Freeze for AgentIngressCertStatus
impl RefUnwindSafe for AgentIngressCertStatus
impl Send for AgentIngressCertStatus
impl Sync for AgentIngressCertStatus
impl Unpin for AgentIngressCertStatus
impl UnwindSafe for AgentIngressCertStatus
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