pub struct ExecutionTransferOperation {
pub operation_id: String,
pub status: ExecutionOperationStatus,
pub validation_failure: Option<TransferValidationFailure>,
pub operation_type: TransferOperationType,
pub preview: Option<TransferOperationPreview>,
pub execution: Option<TransferOperationExecution>,
}
Fields§
§operation_id: String
Operation unique identifier
status: ExecutionOperationStatus
§validation_failure: Option<TransferValidationFailure>
§operation_type: TransferOperationType
§preview: Option<TransferOperationPreview>
§execution: Option<TransferOperationExecution>
Implementations§
Source§impl ExecutionTransferOperation
impl ExecutionTransferOperation
pub fn new( operation_id: String, status: ExecutionOperationStatus, operation_type: TransferOperationType, ) -> ExecutionTransferOperation
Trait Implementations§
Source§impl Clone for ExecutionTransferOperation
impl Clone for ExecutionTransferOperation
Source§fn clone(&self) -> ExecutionTransferOperation
fn clone(&self) -> ExecutionTransferOperation
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 ExecutionTransferOperation
impl Debug for ExecutionTransferOperation
Source§impl Default for ExecutionTransferOperation
impl Default for ExecutionTransferOperation
Source§fn default() -> ExecutionTransferOperation
fn default() -> ExecutionTransferOperation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionTransferOperation
impl<'de> Deserialize<'de> for ExecutionTransferOperation
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 ExecutionTransferOperation
Auto Trait Implementations§
impl Freeze for ExecutionTransferOperation
impl RefUnwindSafe for ExecutionTransferOperation
impl Send for ExecutionTransferOperation
impl Sync for ExecutionTransferOperation
impl Unpin for ExecutionTransferOperation
impl UnwindSafe for ExecutionTransferOperation
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