[][src]Struct gb2260::Division

pub struct Division {
    pub code: &'static str,
    pub name: &'static str,
    pub revision: &'static str,
}

The administrative division

Fields

code: &'static str

The six-digit number of the specific administrative division

name: &'static str

The Chinese name of the specific administrative division

revision: &'static str

The revision year (month)

Methods

impl Division[src]

pub fn get(code: &str) -> Option<Self>[src]

Return the division of the given code

pub fn get_by_revision(code: &str, revision: &str) -> Option<Self>[src]

Return the division of the given code of the given revision

pub fn search(code: &str) -> Option<Self>[src]

Searches administrative division by its code in all revision

pub fn revisions() -> Vec<&'static str>[src]

List all revisions supported by GB2260

pub fn province(&self) -> Self[src]

Return province level division of current division

pub fn is_province(&self) -> bool[src]

pub fn prefecture(&self) -> Option<Self>[src]

Return prefecture level division of current division

pub fn is_prefecture(&self) -> bool[src]

pub fn county(&self) -> Option<&Division>[src]

Return county level division of current division

pub fn is_county(&self) -> bool[src]

pub fn stack(&self) -> Vec<Self>[src]

Trait Implementations

impl Clone for Division[src]

impl Debug for Division[src]

impl Eq for Division[src]

impl Hash for Division[src]

impl PartialEq<Division> for Division[src]

impl StructuralEq for Division[src]

impl StructuralPartialEq for Division[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, 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.