pub struct PwmFundTransferRecord {
pub transfer_id: Option<String>,
pub status: Option<String>,
pub from_user_id: Option<i64>,
pub to_user_id: Option<i64>,
pub amount: Option<String>,
pub coin: Option<String>,
}Fields§
§transfer_id: Option<String>§status: Option<String>§from_user_id: Option<i64>§to_user_id: Option<i64>§amount: Option<String>§coin: Option<String>Trait Implementations§
Source§impl Clone for PwmFundTransferRecord
impl Clone for PwmFundTransferRecord
Source§fn clone(&self) -> PwmFundTransferRecord
fn clone(&self) -> PwmFundTransferRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PwmFundTransferRecord
impl Debug for PwmFundTransferRecord
Source§impl<'de> Deserialize<'de> for PwmFundTransferRecord
impl<'de> Deserialize<'de> for PwmFundTransferRecord
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 PwmFundTransferRecord
impl RefUnwindSafe for PwmFundTransferRecord
impl Send for PwmFundTransferRecord
impl Sync for PwmFundTransferRecord
impl Unpin for PwmFundTransferRecord
impl UnsafeUnpin for PwmFundTransferRecord
impl UnwindSafe for PwmFundTransferRecord
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