pub struct DirectorInfo {
pub display_leader_name: Option<String>,
pub leader_name: Option<String>,
pub position_name: Option<String>,
pub begin_date: Option<u64>,
pub begin_date_str: Option<String>,
pub leader_gender: Option<String>,
pub leader_age: Option<String>,
pub highest_education: Option<String>,
pub annual_salary: Option<u64>,
pub issue_date: Option<u64>,
pub issue_date_str: Option<String>,
}Expand description
公司高管信息项
Fields§
§display_leader_name: Option<String>高管展示名称(仅用于展示,不用于查询背景接口)
leader_name: Option<String>高管姓名(可传入 GetCompanyExecutiveBackground 查询背景)
position_name: Option<String>职位名称
begin_date: Option<u64>任职起始日时间戳(秒)
begin_date_str: Option<String>任职起始日字符串,格式 YYYY-MM-DD,对应市场时区
leader_gender: Option<String>性别,如 “Male” / “Female”
leader_age: Option<String>年龄,字符串形式,如 “62”
highest_education: Option<String>最高学历
annual_salary: Option<u64>年薪
issue_date: Option<u64>发布日期时间戳(秒)
issue_date_str: Option<String>发布日期字符串,格式 YYYY-MM-DD,对应市场时区
Implementations§
Source§impl DirectorInfo
impl DirectorInfo
Sourcepub fn display_leader_name(&self) -> &str
pub fn display_leader_name(&self) -> &str
Returns the value of display_leader_name, or the default value if display_leader_name is unset.
Sourcepub fn leader_name(&self) -> &str
pub fn leader_name(&self) -> &str
Returns the value of leader_name, or the default value if leader_name is unset.
Sourcepub fn position_name(&self) -> &str
pub fn position_name(&self) -> &str
Returns the value of position_name, or the default value if position_name is unset.
Sourcepub fn begin_date(&self) -> u64
pub fn begin_date(&self) -> u64
Returns the value of begin_date, or the default value if begin_date is unset.
Sourcepub fn begin_date_str(&self) -> &str
pub fn begin_date_str(&self) -> &str
Returns the value of begin_date_str, or the default value if begin_date_str is unset.
Sourcepub fn leader_gender(&self) -> &str
pub fn leader_gender(&self) -> &str
Returns the value of leader_gender, or the default value if leader_gender is unset.
Sourcepub fn leader_age(&self) -> &str
pub fn leader_age(&self) -> &str
Returns the value of leader_age, or the default value if leader_age is unset.
Sourcepub fn highest_education(&self) -> &str
pub fn highest_education(&self) -> &str
Returns the value of highest_education, or the default value if highest_education is unset.
Sourcepub fn annual_salary(&self) -> u64
pub fn annual_salary(&self) -> u64
Returns the value of annual_salary, or the default value if annual_salary is unset.
Sourcepub fn issue_date(&self) -> u64
pub fn issue_date(&self) -> u64
Returns the value of issue_date, or the default value if issue_date is unset.
Sourcepub fn issue_date_str(&self) -> &str
pub fn issue_date_str(&self) -> &str
Returns the value of issue_date_str, or the default value if issue_date_str is unset.
Trait Implementations§
Source§impl Clone for DirectorInfo
impl Clone for DirectorInfo
Source§fn clone(&self) -> DirectorInfo
fn clone(&self) -> DirectorInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DirectorInfo
impl Debug for DirectorInfo
Source§impl Default for DirectorInfo
impl Default for DirectorInfo
Source§impl<'de> Deserialize<'de> for DirectorInfowhere
DirectorInfo: Default,
impl<'de> Deserialize<'de> for DirectorInfowhere
DirectorInfo: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Hash for DirectorInfo
impl Hash for DirectorInfo
Source§impl Message for DirectorInfo
impl Message for DirectorInfo
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.