pub struct RenewalAutomationStatus {Show 16 fields
pub schema_version: String,
pub state: RenewalAutomationState,
pub client_id: String,
pub adapter_id: String,
pub updated_at_epoch_s: u64,
pub pending_token_present: bool,
pub reset_path: Option<String>,
pub thread_id: Option<String>,
pub renewal_lease_id: Option<String>,
pub prepared_at_epoch_s: Option<u64>,
pub fulfilled_at_epoch_s: Option<u64>,
pub pending_path: Option<String>,
pub reset_prepare_receipt_path: Option<String>,
pub failure_class: Option<FailureClass>,
pub retry_class: Option<RetryClass>,
pub message: Option<String>,
}Fields§
§schema_version: String§state: RenewalAutomationState§client_id: String§adapter_id: String§updated_at_epoch_s: u64§pending_token_present: bool§reset_path: Option<String>§thread_id: Option<String>§renewal_lease_id: Option<String>§prepared_at_epoch_s: Option<u64>§fulfilled_at_epoch_s: Option<u64>§pending_path: Option<String>§reset_prepare_receipt_path: Option<String>§failure_class: Option<FailureClass>§retry_class: Option<RetryClass>§message: Option<String>Implementations§
Source§impl RenewalAutomationStatus
impl RenewalAutomationStatus
pub fn validate(&self) -> Result<(), ValidationError>
Trait Implementations§
Source§impl Clone for RenewalAutomationStatus
impl Clone for RenewalAutomationStatus
Source§fn clone(&self) -> RenewalAutomationStatus
fn clone(&self) -> RenewalAutomationStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RenewalAutomationStatus
impl Debug for RenewalAutomationStatus
Source§impl<'de> Deserialize<'de> for RenewalAutomationStatus
impl<'de> Deserialize<'de> for RenewalAutomationStatus
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 RenewalAutomationStatus
impl PartialEq for RenewalAutomationStatus
Source§fn eq(&self, other: &RenewalAutomationStatus) -> bool
fn eq(&self, other: &RenewalAutomationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RenewalAutomationStatus
impl Serialize for RenewalAutomationStatus
impl Eq for RenewalAutomationStatus
impl StructuralPartialEq for RenewalAutomationStatus
Auto Trait Implementations§
impl Freeze for RenewalAutomationStatus
impl RefUnwindSafe for RenewalAutomationStatus
impl Send for RenewalAutomationStatus
impl Sync for RenewalAutomationStatus
impl Unpin for RenewalAutomationStatus
impl UnsafeUnpin for RenewalAutomationStatus
impl UnwindSafe for RenewalAutomationStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.