pub struct GetTransactionHistoryResponseTransaction {
pub date: Option<NaiveDateTime>,
pub uniqueid: Option<String>,
pub type: Option<String>,
pub description: Option<String>,
pub ammount: Option<Decimal>,
}Expand description
Response body for Client::get_transaction_history (wire method getTransactionHistory).
Fields§
§date: Option<NaiveDateTime>§uniqueid: Option<String>§type: Option<String>§description: Option<String>§ammount: Option<Decimal>Trait Implementations§
Source§impl Clone for GetTransactionHistoryResponseTransaction
impl Clone for GetTransactionHistoryResponseTransaction
Source§fn clone(&self) -> GetTransactionHistoryResponseTransaction
fn clone(&self) -> GetTransactionHistoryResponseTransaction
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 Default for GetTransactionHistoryResponseTransaction
impl Default for GetTransactionHistoryResponseTransaction
Source§fn default() -> GetTransactionHistoryResponseTransaction
fn default() -> GetTransactionHistoryResponseTransaction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTransactionHistoryResponseTransaction
impl<'de> Deserialize<'de> for GetTransactionHistoryResponseTransaction
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 GetTransactionHistoryResponseTransaction
impl RefUnwindSafe for GetTransactionHistoryResponseTransaction
impl Send for GetTransactionHistoryResponseTransaction
impl Sync for GetTransactionHistoryResponseTransaction
impl Unpin for GetTransactionHistoryResponseTransaction
impl UnsafeUnpin for GetTransactionHistoryResponseTransaction
impl UnwindSafe for GetTransactionHistoryResponseTransaction
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