Struct ex3_node_types::transaction::ForceWithdrawal
source · pub struct ForceWithdrawal {
pub chain: Chain,
pub network: u8,
pub address: String,
pub asset_id: AssetId,
pub amount: AssetAmount,
pub fee: AssetAmount,
pub timestamp: TimeInNs,
}Expand description
Force withdrawal
Fields§
§chain: ChainSpecify the blockchain
network: u8Specify the network
address: StringWithdrawal to address
asset_id: AssetIdWithdrawal asset id
amount: AssetAmountWithdrawal amount Note: This is the amount that the user will receive
fee: AssetAmountWithdrawal fee
timestamp: TimeInNsTimestamp
Trait Implementations§
source§impl Clone for ForceWithdrawal
impl Clone for ForceWithdrawal
source§fn clone(&self) -> ForceWithdrawal
fn clone(&self) -> ForceWithdrawal
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 ForceWithdrawal
impl Debug for ForceWithdrawal
source§impl PartialEq<ForceWithdrawal> for ForceWithdrawal
impl PartialEq<ForceWithdrawal> for ForceWithdrawal
source§fn eq(&self, other: &ForceWithdrawal) -> bool
fn eq(&self, other: &ForceWithdrawal) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ForceWithdrawal
impl StructuralEq for ForceWithdrawal
impl StructuralPartialEq for ForceWithdrawal
Auto Trait Implementations§
impl RefUnwindSafe for ForceWithdrawal
impl Send for ForceWithdrawal
impl Sync for ForceWithdrawal
impl Unpin for ForceWithdrawal
impl UnwindSafe for ForceWithdrawal
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