[][src]Struct acc::model::Posting

pub struct Posting {
    pub line: usize,
    pub comments: Vec<Comment>,
    pub account: String,
    pub unbalanced_amount: Option<MixedAmount>,
    pub balanced_amount: Option<MixedAmount>,
    pub balance_assertion: Option<MixedAmount>,
}

Fields

line: usizecomments: Vec<Comment>account: Stringunbalanced_amount: Option<MixedAmount>balanced_amount: Option<MixedAmount>balance_assertion: Option<MixedAmount>

Trait Implementations

impl Debug for Posting[src]

Auto Trait Implementations

impl RefUnwindSafe for Posting

impl Send for Posting

impl Sync for Posting

impl Unpin for Posting

impl UnwindSafe for Posting

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> From<T> for T[src]

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

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.