Struct HojinInfo

Source
pub struct HojinInfo {
Show 30 fields pub business_items: Option<Vec<String>>, pub business_summary: Option<String>, pub capital_stock: Option<usize>, pub certification: Option<Vec<CertificationInfo>>, pub close_cause: Option<String>, pub close_date: Option<String>, pub commendation: Option<Vec<CommendationInfo>>, pub company_size_female: Option<usize>, pub company_size_male: Option<usize>, pub company_url: Option<String>, pub corporate_number: Option<String>, pub date_of_establishment: Option<String>, pub employee_number: Option<usize>, pub finance: Option<Finance>, pub founding_year: Option<usize>, pub kana: Option<String>, pub location: Option<String>, pub name: Option<String>, pub name_en: Option<String>, pub number_of_activity: Option<String>, pub patent: Option<Vec<PatentInfo>>, pub postal_code: Option<String>, pub procurement: Option<Vec<ProcurementInfo>>, pub qualification_grade: Option<String>, pub representative_name: Option<String>, pub representative_position: Option<String>, pub status: Option<String>, pub subsidy: Option<Vec<SubsidyInfo>>, pub update_date: Option<String>, pub workplace_info: Option<WorkplaceInfoBean>,
}
Expand description

gBizINFOデータ

Fields§

§business_items: Option<Vec<String>>

全省庁統一資格の営業品目

§business_summary: Option<String>

事業概要

§capital_stock: Option<usize>

資本金

§certification: Option<Vec<CertificationInfo>>

届出・認定情報

§close_cause: Option<String>

登記記録の閉鎖等の事由

§close_date: Option<String>

登記記録の閉鎖等年月日

§commendation: Option<Vec<CommendationInfo>>

表彰情報

§company_size_female: Option<usize>

企業規模詳細(女)

§company_size_male: Option<usize>

企業規模詳細(男)

§company_url: Option<String>

企業ホームページ

§corporate_number: Option<String>

法人番号

§date_of_establishment: Option<String>

設立年月日

§employee_number: Option<usize>

従業員数

§finance: Option<Finance>

財務情報

§founding_year: Option<usize>

創業年

§kana: Option<String>

法人名フリガナ

§location: Option<String>

本社所在地

§name: Option<String>

法人名

§name_en: Option<String>

法人名英語

§number_of_activity: Option<String>

法人活動情報件数

§patent: Option<Vec<PatentInfo>>

特許情報

§postal_code: Option<String>

郵便番号

§procurement: Option<Vec<ProcurementInfo>>

調達情報

§qualification_grade: Option<String>

全省庁統一資格の資格等級(物品の製造、物品の販売、役務の提供等、物品の買受け)

§representative_name: Option<String>

法人代表者名

§representative_position: Option<String>

法人代表者役職

§status: Option<String>

ステータス

§subsidy: Option<Vec<SubsidyInfo>>

補助金情報

§update_date: Option<String>

最終更新日

§workplace_info: Option<WorkplaceInfoBean>

職場情報

Implementations§

Source§

impl HojinInfo

Source

pub fn name(&self) -> &str

Source

pub fn corporate_number(&self) -> &str

Trait Implementations§

Source§

impl Clone for HojinInfo

Source§

fn clone(&self) -> HojinInfo

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for HojinInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for HojinInfo

Source§

fn default() -> HojinInfo

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for HojinInfo

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for HojinInfo

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T