Struct cpf::CPF[][src]

pub struct CPF { /* fields omitted */ }

Implementations

impl CPF[src]

pub fn digits(&self) -> &[u8; 11][src]

pub fn formatted(&self) -> ArrayString<14>[src]

pub fn check_digits(&self) -> (&u8, &u8)[src]

Trait Implementations

impl Clone for CPF[src]

impl Copy for CPF[src]

impl Debug for CPF[src]

impl Display for CPF[src]

impl Eq for CPF[src]

impl FromStr for CPF[src]

type Err = ParseCPFError

The associated error which can be returned from parsing.

impl PartialEq<CPF> for CPF[src]

impl StructuralEq for CPF[src]

impl StructuralPartialEq for CPF[src]

impl TryFrom<&'_ str> for CPF[src]

type Error = ParseCPFError

The type returned in the event of a conversion error.

impl TryFrom<[u8; 11]> for CPF[src]

type Error = ParseCPFError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for CPF

impl Send for CPF

impl Sync for CPF

impl Unpin for CPF

impl UnwindSafe for CPF

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.