Struct isin::ISIN[][src]

#[repr(transparent)]pub struct ISIN(_);

Implementations

impl ISIN[src]

pub fn parse_strict<S>(value: S) -> Result<ISIN, ParseError> where
    S: Into<String>, 
[src]

👎 Deprecated since 0.1.7:

please use isin::parse_strict instead

pub fn parse_loose<S>(value: S) -> Result<ISIN, ParseError> where
    S: Into<String>, 
[src]

👎 Deprecated since 0.1.7:

please use isin::parse_loose instead

pub fn value(&self) -> &str[src]

👎 Deprecated since 0.1.7:

please use to_string instead

Return a string representation of the ISIN.

pub fn country_code(&self) -> &str[src]

Return just the country code portion of the ISIN.

pub fn security_identifier(&self) -> &str[src]

Return just the security identifier portion of the ISIN.

pub fn payload(&self) -> &str[src]

Return the “payload” — everything but the check digit.

pub fn check_digit(&self) -> char[src]

Return just the check digit portion of the ISIN.

Trait Implementations

impl Clone for ISIN[src]

impl Debug for ISIN[src]

impl Display for ISIN[src]

impl Eq for ISIN[src]

impl FromStr for ISIN[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl Hash for ISIN[src]

impl Ord for ISIN[src]

impl PartialEq<ISIN> for ISIN[src]

impl PartialOrd<ISIN> for ISIN[src]

impl StructuralEq for ISIN[src]

impl StructuralPartialEq for ISIN[src]

Auto Trait Implementations

impl RefUnwindSafe for ISIN

impl Send for ISIN

impl Sync for ISIN

impl Unpin for ISIN

impl UnwindSafe for ISIN

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.