Enum iban::BbanResult [] [src]

pub enum BbanResult {
    Valid,
    Invalid,
    CountryUnknown,
}

A variant of this enum is returned by the method validate_bban().

Examples

use iban::Iban;
use iban::BbanResult;

// A valid BBAN
let iban1 = "DE44500105175407324931".parse::<Iban>()?;
assert_eq!(iban1.validate_bban(), BbanResult::Valid);

// An invalid BBAN
let iban2: Iban = "BA6312900794010284AC".parse()?;
assert_eq!(iban2.validate_bban(), BbanResult::Invalid);

// An unknown country
let iban3: Iban = "ZZ07273912631298461".parse()?;
assert_eq!(iban3.validate_bban(), BbanResult::CountryUnknown);

Variants

The country was recognized and the code was valid.

The country was recognized and didn't fit the format.

The country was not recognized.

Trait Implementations

impl Copy for BbanResult
[src]

impl Clone for BbanResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for BbanResult
[src]

impl PartialEq for BbanResult
[src]

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

This method tests for !=.

impl Hash for BbanResult
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for BbanResult
[src]

Formats the value using the given formatter.