pub struct GamertagTxData {
pub id: String,
pub receiver_id: String,
pub amount: String,
pub fee: String,
pub unit: String,
pub processed_at: Option<DateTime<Utc>>,
pub confirmed_at: Option<DateTime<Utc>>,
pub comment: String,
pub status: String,
}
Fields§
§id: String
§receiver_id: String
§amount: String
§fee: String
§unit: String
§processed_at: Option<DateTime<Utc>>
§confirmed_at: Option<DateTime<Utc>>
§comment: String
§status: String
Trait Implementations§
Source§impl Debug for GamertagTxData
impl Debug for GamertagTxData
Source§impl<'de> Deserialize<'de> for GamertagTxData
impl<'de> Deserialize<'de> for GamertagTxData
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 GamertagTxData
impl RefUnwindSafe for GamertagTxData
impl Send for GamertagTxData
impl Sync for GamertagTxData
impl Unpin for GamertagTxData
impl UnwindSafe for GamertagTxData
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