pub struct EsiWalletJournalEntry {Show 13 fields
pub id: i64,
pub date: DateTime<Utc>,
pub ref_type: String,
pub amount: Option<Isk>,
pub balance: Option<Isk>,
pub description: Option<String>,
pub first_party_id: Option<i64>,
pub second_party_id: Option<i64>,
pub reason: Option<String>,
pub context_id: Option<i64>,
pub context_id_type: Option<String>,
pub tax: Option<Isk>,
pub tax_receiver_id: Option<i64>,
}Expand description
A single wallet journal entry.
Fields§
§id: i64§date: DateTime<Utc>§ref_type: String§amount: Option<Isk>§balance: Option<Isk>§description: Option<String>§first_party_id: Option<i64>§second_party_id: Option<i64>§reason: Option<String>§context_id: Option<i64>§context_id_type: Option<String>§tax: Option<Isk>§tax_receiver_id: Option<i64>Trait Implementations§
Source§impl Clone for EsiWalletJournalEntry
impl Clone for EsiWalletJournalEntry
Source§fn clone(&self) -> EsiWalletJournalEntry
fn clone(&self) -> EsiWalletJournalEntry
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 EsiWalletJournalEntry
impl Debug for EsiWalletJournalEntry
Source§impl<'de> Deserialize<'de> for EsiWalletJournalEntry
impl<'de> Deserialize<'de> for EsiWalletJournalEntry
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 EsiWalletJournalEntry
impl RefUnwindSafe for EsiWalletJournalEntry
impl Send for EsiWalletJournalEntry
impl Sync for EsiWalletJournalEntry
impl Unpin for EsiWalletJournalEntry
impl UnsafeUnpin for EsiWalletJournalEntry
impl UnwindSafe for EsiWalletJournalEntry
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