[][src]Struct billecta::AnalysisRevenueByProduct

pub struct AnalysisRevenueByProduct {
    pub action_public_id: Guid,
    pub invoice_number: String,
    pub debtor_name: String,
    pub product_public_id: Guid,
    pub product_description: Option<String>,
    pub date: DateTime,
    pub transaction_date: DateTime,
    pub amount: AmountView,
    pub vat: f64,
    pub quantity: f64,
    pub book_keeping_account: String,
    pub period_start: Option<DateTime>,
    pub period_end: Option<DateTime>,
}

Fields

action_public_id: Guidinvoice_number: Stringdebtor_name: Stringproduct_public_id: Guidproduct_description: Option<String>date: DateTimetransaction_date: DateTimeamount: AmountViewvat: f64quantity: f64book_keeping_account: Stringperiod_start: Option<DateTime>period_end: Option<DateTime>

Trait Implementations

impl Clone for AnalysisRevenueByProduct[src]

impl Debug for AnalysisRevenueByProduct[src]

impl<'de> Deserialize<'de> for AnalysisRevenueByProduct[src]

impl Serialize for AnalysisRevenueByProduct[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.