pub struct InternalTransferRecord {
pub transfer_id: String,
pub coin: String,
pub amount: String,
pub from_account_type: String,
pub to_account_type: String,
pub timestamp: String,
pub status: String,
}Expand description
Internal transfer record item
Fields§
§transfer_id: StringTransfer ID
coin: StringTransferred coin
amount: StringTransferred amount
from_account_type: StringFrom account type
to_account_type: StringTo account type
timestamp: StringTransfer created timestamp (ms)
status: StringTransfer status
Trait Implementations§
Source§impl Clone for InternalTransferRecord
impl Clone for InternalTransferRecord
Source§fn clone(&self) -> InternalTransferRecord
fn clone(&self) -> InternalTransferRecord
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 InternalTransferRecord
impl Debug for InternalTransferRecord
Source§impl<'de> Deserialize<'de> for InternalTransferRecord
impl<'de> Deserialize<'de> for InternalTransferRecord
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
Auto Trait Implementations§
impl Freeze for InternalTransferRecord
impl RefUnwindSafe for InternalTransferRecord
impl Send for InternalTransferRecord
impl Sync for InternalTransferRecord
impl Unpin for InternalTransferRecord
impl UnsafeUnpin for InternalTransferRecord
impl UnwindSafe for InternalTransferRecord
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