pub struct OperationalEfficiencyItem {Show 13 fields
pub fiscal_year: Option<i32>,
pub financial_type: Option<i32>,
pub period_text: Option<String>,
pub end_date: Option<i64>,
pub end_date_str: Option<String>,
pub employee_num: Option<i64>,
pub employee_num_yoy: Option<f64>,
pub income_per_capita: Option<f64>,
pub income_per_capita_yoy: Option<f64>,
pub profit_per_capita: Option<f64>,
pub profit_per_capita_yoy: Option<f64>,
pub net_profit_per_capita: Option<f64>,
pub net_profit_per_capita_yoy: Option<f64>,
}Expand description
经营效率数据项
Fields§
§fiscal_year: Option<i32>财务年度,如 2024
financial_type: Option<i32>财报类型,详见 Qot_Common.F10Type 定义
period_text: Option<String>财报周期,如 “2024/Q3”、“2024/FY”
end_date: Option<i64>财报统计截止日时间戳(秒)
end_date_str: Option<String>财报统计截止日字符串,格式 YYYY-MM-DD,对应市场时区
employee_num: Option<i64>员工人数
employee_num_yoy: Option<f64>员工人数同比增长率,百分号前的值,如 12.34 表示 12.34%
income_per_capita: Option<f64>人均营收
income_per_capita_yoy: Option<f64>人均营收同比增长率,百分号前的值,如 12.34 表示 12.34%
profit_per_capita: Option<f64>人均营业利润
profit_per_capita_yoy: Option<f64>人均营业利润同比增长率,百分号前的值,如 12.34 表示 12.34%
net_profit_per_capita: Option<f64>人均净利润
net_profit_per_capita_yoy: Option<f64>人均净利润同比增长率,百分号前的值,如 12.34 表示 12.34%
Implementations§
Source§impl OperationalEfficiencyItem
impl OperationalEfficiencyItem
Sourcepub fn fiscal_year(&self) -> i32
pub fn fiscal_year(&self) -> i32
Returns the value of fiscal_year, or the default value if fiscal_year is unset.
Sourcepub fn financial_type(&self) -> F10Type
pub fn financial_type(&self) -> F10Type
Returns the enum value of financial_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_financial_type(&mut self, value: F10Type)
pub fn set_financial_type(&mut self, value: F10Type)
Sets financial_type to the provided enum value.
Sourcepub fn period_text(&self) -> &str
pub fn period_text(&self) -> &str
Returns the value of period_text, or the default value if period_text is unset.
Sourcepub fn end_date(&self) -> i64
pub fn end_date(&self) -> i64
Returns the value of end_date, or the default value if end_date is unset.
Sourcepub fn end_date_str(&self) -> &str
pub fn end_date_str(&self) -> &str
Returns the value of end_date_str, or the default value if end_date_str is unset.
Sourcepub fn employee_num(&self) -> i64
pub fn employee_num(&self) -> i64
Returns the value of employee_num, or the default value if employee_num is unset.
Sourcepub fn employee_num_yoy(&self) -> f64
pub fn employee_num_yoy(&self) -> f64
Returns the value of employee_num_yoy, or the default value if employee_num_yoy is unset.
Sourcepub fn income_per_capita(&self) -> f64
pub fn income_per_capita(&self) -> f64
Returns the value of income_per_capita, or the default value if income_per_capita is unset.
Sourcepub fn income_per_capita_yoy(&self) -> f64
pub fn income_per_capita_yoy(&self) -> f64
Returns the value of income_per_capita_yoy, or the default value if income_per_capita_yoy is unset.
Sourcepub fn profit_per_capita(&self) -> f64
pub fn profit_per_capita(&self) -> f64
Returns the value of profit_per_capita, or the default value if profit_per_capita is unset.
Sourcepub fn profit_per_capita_yoy(&self) -> f64
pub fn profit_per_capita_yoy(&self) -> f64
Returns the value of profit_per_capita_yoy, or the default value if profit_per_capita_yoy is unset.
Sourcepub fn net_profit_per_capita(&self) -> f64
pub fn net_profit_per_capita(&self) -> f64
Returns the value of net_profit_per_capita, or the default value if net_profit_per_capita is unset.
Sourcepub fn net_profit_per_capita_yoy(&self) -> f64
pub fn net_profit_per_capita_yoy(&self) -> f64
Returns the value of net_profit_per_capita_yoy, or the default value if net_profit_per_capita_yoy is unset.
Trait Implementations§
Source§impl Clone for OperationalEfficiencyItem
impl Clone for OperationalEfficiencyItem
Source§fn clone(&self) -> OperationalEfficiencyItem
fn clone(&self) -> OperationalEfficiencyItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OperationalEfficiencyItem
impl Debug for OperationalEfficiencyItem
Source§impl Default for OperationalEfficiencyItem
impl Default for OperationalEfficiencyItem
Source§impl<'de> Deserialize<'de> for OperationalEfficiencyItemwhere
OperationalEfficiencyItem: Default,
impl<'de> Deserialize<'de> for OperationalEfficiencyItemwhere
OperationalEfficiencyItem: 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 Message for OperationalEfficiencyItem
impl Message for OperationalEfficiencyItem
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.