pub struct Numbers {
    pub account: Option<String>,
    pub ach_routing: Option<String>,
    pub ach_wire_routing: Option<String>,
    pub eft_institution: Option<String>,
    pub eft_branch: Option<String>,
    pub international_bic: Option<String>,
    pub international_iban: Option<String>,
    pub bacs_sort_code: Option<String>,
}

Fields

account: Option<String>

Will be used for the account number.

ach_routing: Option<String>

Must be a valid ACH routing number.

ach_wire_routing: Option<String>

Must be a valid wire transfer routing number.

eft_institution: Option<String>

EFT institution number. Must be specified alongside eft_branch.

eft_branch: Option<String>

EFT branch number. Must be specified alongside eft_institution.

international_bic: Option<String>

Bank identifier code (BIC). Must be specified alongside international_iban.

international_iban: Option<String>

International bank account number (IBAN). If no account number is specified via account, will also be used as the account number by default. Must be specified alongside international_bic.

bacs_sort_code: Option<String>

BACS sort code

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more