pub struct ReservedDomainCertJob {
pub error_code: Option<String>,
pub msg: String,
pub started_at: String,
pub retries_at: Option<String>,
}
Fields§
§error_code: Option<String>
if present, an error code indicating why provisioning is failing. It may be either a temporary condition (INTERNAL_ERROR), or a permanent one the user must correct (DNS_ERROR).
msg: String
a message describing the current status or error
started_at: String
timestamp when the provisioning job started, RFC 3339 format
retries_at: Option<String>
timestamp when the provisioning job will be retried
Trait Implementations§
Source§impl Clone for ReservedDomainCertJob
impl Clone for ReservedDomainCertJob
Source§fn clone(&self) -> ReservedDomainCertJob
fn clone(&self) -> ReservedDomainCertJob
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 Debug for ReservedDomainCertJob
impl Debug for ReservedDomainCertJob
Source§impl Default for ReservedDomainCertJob
impl Default for ReservedDomainCertJob
Source§fn default() -> ReservedDomainCertJob
fn default() -> ReservedDomainCertJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReservedDomainCertJob
impl<'de> Deserialize<'de> for ReservedDomainCertJob
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 ReservedDomainCertJob
impl RefUnwindSafe for ReservedDomainCertJob
impl Send for ReservedDomainCertJob
impl Sync for ReservedDomainCertJob
impl Unpin for ReservedDomainCertJob
impl UnwindSafe for ReservedDomainCertJob
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