pub struct ClientFee {
pub account_id: String,
pub acct_alias: Option<String>,
pub model: Option<String>,
pub date: Option<NaiveDate>,
pub currency: Option<String>,
pub revenue: Option<Decimal>,
pub expense: Option<Decimal>,
pub net: Option<Decimal>,
pub description: Option<String>,
}Expand description
Client fee (advisory/service fees)
Fields§
§account_id: StringAccount ID
acct_alias: Option<String>Account alias
model: Option<String>Model
date: Option<NaiveDate>Date
currency: Option<String>Currency
revenue: Option<Decimal>Revenue
expense: Option<Decimal>Expense
net: Option<Decimal>Net
description: Option<String>Description
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClientFee
impl<'de> Deserialize<'de> for ClientFee
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
impl StructuralPartialEq for ClientFee
Auto Trait Implementations§
impl Freeze for ClientFee
impl RefUnwindSafe for ClientFee
impl Send for ClientFee
impl Sync for ClientFee
impl Unpin for ClientFee
impl UnwindSafe for ClientFee
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