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