pub struct InstitutionHolderItem {
pub period_text: Option<String>,
pub institution_quantity: Option<i64>,
pub institution_quantity_change: Option<i64>,
pub holder_quantity: Option<i64>,
pub holder_quantity_change: Option<i64>,
pub holder_pct: Option<f64>,
pub holder_pct_change: Option<f64>,
}Fields§
§period_text: Option<String>报告期,如 “2025/Q3”
institution_quantity: Option<i64>机构持股机构数量(家)
institution_quantity_change: Option<i64>机构持股机构数量变化
holder_quantity: Option<i64>机构持股总股数(股)
holder_quantity_change: Option<i64>机构持股总股数变化
holder_pct: Option<f64>持股比例,百分号前的值,如 12.34 表示 12.34%
holder_pct_change: Option<f64>持股比例变动,百分号前的值,如 12.34 表示变动 12.34%
Implementations§
Source§impl InstitutionHolderItem
impl InstitutionHolderItem
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 institution_quantity(&self) -> i64
pub fn institution_quantity(&self) -> i64
Returns the value of institution_quantity, or the default value if institution_quantity is unset.
Sourcepub fn institution_quantity_change(&self) -> i64
pub fn institution_quantity_change(&self) -> i64
Returns the value of institution_quantity_change, or the default value if institution_quantity_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.
Sourcepub fn holder_quantity_change(&self) -> i64
pub fn holder_quantity_change(&self) -> i64
Returns the value of holder_quantity_change, or the default value if holder_quantity_change 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_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.
Trait Implementations§
Source§impl Clone for InstitutionHolderItem
impl Clone for InstitutionHolderItem
Source§fn clone(&self) -> InstitutionHolderItem
fn clone(&self) -> InstitutionHolderItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for InstitutionHolderItem
impl Debug for InstitutionHolderItem
Source§impl Default for InstitutionHolderItem
impl Default for InstitutionHolderItem
Source§impl<'de> Deserialize<'de> for InstitutionHolderItemwhere
InstitutionHolderItem: Default,
impl<'de> Deserialize<'de> for InstitutionHolderItemwhere
InstitutionHolderItem: 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 InstitutionHolderItem
impl Message for InstitutionHolderItem
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.