pub struct EmailPaymentData {
pub id: String,
pub status: String,
pub amount: u64,
pub comment: String,
pub receiver_id: String,
pub sender_tx_id: String,
pub settled_at: DateTime<Utc>,
pub transaction_id: String,
}
Fields§
§id: String
§status: String
§amount: u64
§comment: String
§receiver_id: String
§sender_tx_id: String
§settled_at: DateTime<Utc>
§transaction_id: String
Trait Implementations§
Source§impl Clone for EmailPaymentData
impl Clone for EmailPaymentData
Source§fn clone(&self) -> EmailPaymentData
fn clone(&self) -> EmailPaymentData
Returns a copy 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 EmailPaymentData
impl Debug for EmailPaymentData
Source§impl<'de> Deserialize<'de> for EmailPaymentData
impl<'de> Deserialize<'de> for EmailPaymentData
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 EmailPaymentData
impl RefUnwindSafe for EmailPaymentData
impl Send for EmailPaymentData
impl Sync for EmailPaymentData
impl Unpin for EmailPaymentData
impl UnwindSafe for EmailPaymentData
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