pub struct OwnerListItem {
pub period_text: Option<String>,
pub name: Option<String>,
pub holder_id: Option<i32>,
pub share_change_num: Option<i64>,
pub shares_change_price: Option<i64>,
pub holder_pct: Option<f64>,
pub holder_type: Option<String>,
pub holder_type_id: Option<i32>,
pub holding_date: Option<u64>,
pub holding_date_str: Option<String>,
pub holder_pct_change: Option<f64>,
pub holder_quantity: Option<i64>,
}Fields§
§period_text: Option<String>报告期,如 “2025/Q3”
name: Option<String>股东名称
holder_id: Option<i32>股东 ID,用于请求历史变动明细
持股变动数(单位:股)
参考变动金额
holder_pct: Option<f64>持股比例,百分号前的值,如 12.34 表示 12.34%
holder_type: Option<String>持股性质(文本,如“传统投资经理“)
holder_type_id: Option<i32>持股性质 ID,用于请求历史变动明细
holding_date: Option<u64>报告日期时间戳(秒)
holding_date_str: Option<String>报告日期字符串,格式 YYYY-MM-DD,香港时区
holder_pct_change: Option<f64>持股变动比例,百分号前的值,如 12.34 表示变动 12.34%
holder_quantity: Option<i64>持股数(单位:股)
Implementations§
Source§impl OwnerListItem
impl OwnerListItem
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 holder_id(&self) -> i32
pub fn holder_id(&self) -> i32
Returns the value of holder_id, or the default value if holder_id is unset.
Returns the value of share_change_num, or the default value if share_change_num is unset.
Returns the value of shares_change_price, or the default value if shares_change_price is unset.
Sourcepub fn holder_pct(&self) -> f64
pub fn holder_pct(&self) -> f64
Returns the value of holder_pct, or the default value if holder_pct is unset.
Sourcepub fn holder_type(&self) -> &str
pub fn holder_type(&self) -> &str
Returns the value of holder_type, or the default value if holder_type is unset.
Sourcepub fn holder_type_id(&self) -> i32
pub fn holder_type_id(&self) -> i32
Returns the value of holder_type_id, or the default value if holder_type_id is unset.
Sourcepub fn holding_date(&self) -> u64
pub fn holding_date(&self) -> u64
Returns the value of holding_date, or the default value if holding_date is unset.
Sourcepub fn holding_date_str(&self) -> &str
pub fn holding_date_str(&self) -> &str
Returns the value of holding_date_str, or the default value if holding_date_str is unset.
Sourcepub fn holder_pct_change(&self) -> f64
pub fn holder_pct_change(&self) -> f64
Returns the value of holder_pct_change, or the default value if holder_pct_change is unset.
Sourcepub fn holder_quantity(&self) -> i64
pub fn holder_quantity(&self) -> i64
Returns the value of holder_quantity, or the default value if holder_quantity is unset.
Trait Implementations§
Source§impl Clone for OwnerListItem
impl Clone for OwnerListItem
Source§fn clone(&self) -> OwnerListItem
fn clone(&self) -> OwnerListItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OwnerListItem
impl Debug for OwnerListItem
Source§impl Default for OwnerListItem
impl Default for OwnerListItem
Source§impl<'de> Deserialize<'de> for OwnerListItemwhere
OwnerListItem: Default,
impl<'de> Deserialize<'de> for OwnerListItemwhere
OwnerListItem: 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 OwnerListItem
impl Message for OwnerListItem
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.