pub struct SettlementAutomationExecution {
pub job_id: String,
pub fired_at: u64,
pub executed_at: u64,
pub observed_state_fingerprint: String,
pub duplicate_suppressed: bool,
pub operator_override_used: bool,
pub outcome: SettlementAutomationOutcome,
}Fields§
§job_id: String§fired_at: u64§executed_at: u64§observed_state_fingerprint: String§duplicate_suppressed: bool§operator_override_used: bool§outcome: SettlementAutomationOutcomeTrait Implementations§
Source§impl Clone for SettlementAutomationExecution
impl Clone for SettlementAutomationExecution
Source§fn clone(&self) -> SettlementAutomationExecution
fn clone(&self) -> SettlementAutomationExecution
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<'de> Deserialize<'de> for SettlementAutomationExecution
impl<'de> Deserialize<'de> for SettlementAutomationExecution
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
impl Eq for SettlementAutomationExecution
impl StructuralPartialEq for SettlementAutomationExecution
Auto Trait Implementations§
impl Freeze for SettlementAutomationExecution
impl RefUnwindSafe for SettlementAutomationExecution
impl Send for SettlementAutomationExecution
impl Sync for SettlementAutomationExecution
impl Unpin for SettlementAutomationExecution
impl UnsafeUnpin for SettlementAutomationExecution
impl UnwindSafe for SettlementAutomationExecution
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