pub struct StatementLine {
    pub value_date: NaiveDate,
    pub entry_date: Option<NaiveDate>,
    pub ext_debit_credit_indicator: ExtDebitOrCredit,
    pub funds_code: Option<String>,
    pub amount: Decimal,
    pub transaction_type_ident_code: TransactionTypeIdentificationCode,
    pub customer_ref: String,
    pub bank_ref: Option<String>,
    pub supplementary_details: Option<String>,
    pub information_to_account_owner: Option<String>,
}
Expand description

A StatementLine holds information contained in tag :61: and tag :86:.

Fields

value_date: NaiveDateentry_date: Option<NaiveDate>ext_debit_credit_indicator: ExtDebitOrCreditfunds_code: Option<String>amount: Decimaltransaction_type_ident_code: TransactionTypeIdentificationCodecustomer_ref: Stringbank_ref: Option<String>supplementary_details: Option<String>information_to_account_owner: Option<String>

This information is contained in tag :86:

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.