pub struct DocumentTransaction {Show 14 fields
pub Id: i32,
pub Side: enumSideType,
pub Account: String,
pub Account_Full: Account,
pub MaturityDate: NaiveDateTime,
pub Advance: bool,
pub Value: Decimal,
pub ValuePLN: Decimal,
pub Currency: String,
pub CurrencyRate: Decimal,
pub InterestType: enumTransactionInterestType,
pub InterestRate: Decimal,
pub RKP: Decimal,
pub BankAccountId: Option<i32>,
}Expand description
WebAPI model DocumentTransaction.
Fields§
§Id: i32§Side: enumSideType§Account: String§Account_Full: Account§MaturityDate: NaiveDateTime§Advance: bool§Value: Decimal§ValuePLN: Decimal§Currency: String§CurrencyRate: Decimal§InterestType: enumTransactionInterestType§InterestRate: Decimal§RKP: Decimal§BankAccountId: Option<i32>Trait Implementations§
Source§impl Clone for DocumentTransaction
impl Clone for DocumentTransaction
Source§fn clone(&self) -> DocumentTransaction
fn clone(&self) -> DocumentTransaction
Returns a duplicate 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 DocumentTransaction
impl Debug for DocumentTransaction
Source§impl<'de> Deserialize<'de> for DocumentTransaction
impl<'de> Deserialize<'de> for DocumentTransaction
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 DocumentTransaction
impl RefUnwindSafe for DocumentTransaction
impl Send for DocumentTransaction
impl Sync for DocumentTransaction
impl Unpin for DocumentTransaction
impl UnsafeUnpin for DocumentTransaction
impl UnwindSafe for DocumentTransaction
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