pub struct InternalTransferParams {
pub transfer_id: String,
pub coin: String,
pub amount: String,
pub from_account_type: String,
pub to_account_type: String,
}Expand description
Internal transfer request.
Fields§
§transfer_id: StringTransfer ID (UUID)
coin: StringCoin
amount: StringAmount
from_account_type: StringFrom account type
to_account_type: StringTo account type
Implementations§
Trait Implementations§
Source§impl Clone for InternalTransferParams
impl Clone for InternalTransferParams
Source§fn clone(&self) -> InternalTransferParams
fn clone(&self) -> InternalTransferParams
Returns a duplicate 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 InternalTransferParams
impl Debug for InternalTransferParams
Auto Trait Implementations§
impl Freeze for InternalTransferParams
impl RefUnwindSafe for InternalTransferParams
impl Send for InternalTransferParams
impl Sync for InternalTransferParams
impl Unpin for InternalTransferParams
impl UnsafeUnpin for InternalTransferParams
impl UnwindSafe for InternalTransferParams
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