Struct kenall_rs::model::Corporation[][src]

pub struct Corporation {
    pub name: String,
    pub name_kana: String,
    pub block_lot: String,
    pub post_office: String,
    pub code_type: u8,
}

Fields

name: String

Name of the office

name_kana: String

Name of the office with Kana

block_lot: String

Block lot

post_office: Stringcode_type: u8

Code type is desribed with 0 or 1. 0: 大口事業所 1: 私書箱

Trait Implementations

impl Debug for Corporation[src]

impl<'de> Deserialize<'de> for Corporation[src]

impl PartialEq<Corporation> for Corporation[src]

impl StructuralPartialEq for Corporation[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.