pub struct TransferOperationExecution {
pub input: TransferOperationConfigParams,
pub output: Option<TransferOperationExecutionOutput>,
pub tx_id: Option<String>,
pub started_at: f64,
pub finished_at: Option<f64>,
pub failure: Option<TransferOperationFailure>,
}
Fields§
§input: TransferOperationConfigParams
§output: Option<TransferOperationExecutionOutput>
§tx_id: Option<String>
§started_at: f64
§finished_at: Option<f64>
§failure: Option<TransferOperationFailure>
Implementations§
Source§impl TransferOperationExecution
impl TransferOperationExecution
pub fn new( input: TransferOperationConfigParams, started_at: f64, ) -> TransferOperationExecution
Trait Implementations§
Source§impl Clone for TransferOperationExecution
impl Clone for TransferOperationExecution
Source§fn clone(&self) -> TransferOperationExecution
fn clone(&self) -> TransferOperationExecution
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 TransferOperationExecution
impl Debug for TransferOperationExecution
Source§impl Default for TransferOperationExecution
impl Default for TransferOperationExecution
Source§fn default() -> TransferOperationExecution
fn default() -> TransferOperationExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferOperationExecution
impl<'de> Deserialize<'de> for TransferOperationExecution
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 StructuralPartialEq for TransferOperationExecution
Auto Trait Implementations§
impl Freeze for TransferOperationExecution
impl RefUnwindSafe for TransferOperationExecution
impl Send for TransferOperationExecution
impl Sync for TransferOperationExecution
impl Unpin for TransferOperationExecution
impl UnwindSafe for TransferOperationExecution
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