[][src]Struct kennitolur::Kennitala

pub struct Kennitala { /* fields omitted */ }

Struct that represents the kennitala of an Icelandic citizen or resident.

Methods

impl Kennitala[src]

pub fn new(kennitala: &str) -> Result<Self, KennitalaError>[src]

Create new kennitala object from the given string. Validation is done beforehand.

pub fn get_day(&self) -> u32[src]

Get day in the range [1, 31]

pub fn get_month(&self) -> u32[src]

Get month in the range [1, 12]

pub fn get_short_year(&self) -> u32[src]

Get year in the range [0, 99]

pub fn get_year(&self) -> u32[src]

Get year in the range [1900, 2099]

pub fn get_short_century(&self) -> u32[src]

Get century digit in the set {0, 9}

pub fn get_randoms(&self) -> u32[src]

Get the two random digits plus the checksum digit, these are in the range [20, 999]

pub fn get_birthday(&self) -> NaiveDate[src]

Get the birthday of this kennitala's holder.

Trait Implementations

impl Clone for Kennitala[src]

impl Copy for Kennitala[src]

impl Debug for Kennitala[src]

impl Display for Kennitala[src]

impl Eq for Kennitala[src]

impl Hash for Kennitala[src]

impl PartialEq<Kennitala> for Kennitala[src]

impl StructuralEq for Kennitala[src]

impl StructuralPartialEq for Kennitala[src]

Auto Trait Implementations

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.