pub struct UniversalTransferRecord {
pub transfer_id: String,
pub coin: String,
pub amount: String,
pub from_member_id: String,
pub to_member_id: String,
pub from_account_type: String,
pub to_account_type: String,
pub timestamp: String,
pub status: String,
}Expand description
Universal transfer record item
Fields§
§transfer_id: StringTransfer ID
coin: StringTransferred coin
amount: StringTransferred amount
from_member_id: StringFrom UID
to_member_id: StringTo UID
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 UniversalTransferRecord
impl Clone for UniversalTransferRecord
Source§fn clone(&self) -> UniversalTransferRecord
fn clone(&self) -> UniversalTransferRecord
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 UniversalTransferRecord
impl Debug for UniversalTransferRecord
Source§impl<'de> Deserialize<'de> for UniversalTransferRecord
impl<'de> Deserialize<'de> for UniversalTransferRecord
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 UniversalTransferRecord
impl RefUnwindSafe for UniversalTransferRecord
impl Send for UniversalTransferRecord
impl Sync for UniversalTransferRecord
impl Unpin for UniversalTransferRecord
impl UnsafeUnpin for UniversalTransferRecord
impl UnwindSafe for UniversalTransferRecord
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