pub struct InstitutionListItem {
pub institution_id: i32,
pub institution_name: Option<String>,
pub position_value: Option<f64>,
pub position_value_change: Option<f64>,
pub position_count: Option<i32>,
pub position_count_change: Option<i32>,
pub disclosure_date: Option<String>,
}Expand description
机构列表数据项
Fields§
§institution_id: i32机构ID
institution_name: Option<String>机构名称
position_value: Option<f64>持仓市值
position_value_change: Option<f64>持仓市值变化
position_count: Option<i32>持仓股票数
position_count_change: Option<i32>持仓股票数变化
disclosure_date: Option<String>披露日期(yyyy-MM-dd)
Implementations§
Source§impl InstitutionListItem
impl InstitutionListItem
Sourcepub fn institution_name(&self) -> &str
pub fn institution_name(&self) -> &str
Returns the value of institution_name, or the default value if institution_name is unset.
Sourcepub fn position_value(&self) -> f64
pub fn position_value(&self) -> f64
Returns the value of position_value, or the default value if position_value is unset.
Sourcepub fn position_value_change(&self) -> f64
pub fn position_value_change(&self) -> f64
Returns the value of position_value_change, or the default value if position_value_change is unset.
Sourcepub fn position_count(&self) -> i32
pub fn position_count(&self) -> i32
Returns the value of position_count, or the default value if position_count is unset.
Sourcepub fn position_count_change(&self) -> i32
pub fn position_count_change(&self) -> i32
Returns the value of position_count_change, or the default value if position_count_change is unset.
Sourcepub fn disclosure_date(&self) -> &str
pub fn disclosure_date(&self) -> &str
Returns the value of disclosure_date, or the default value if disclosure_date is unset.
Trait Implementations§
Source§impl Clone for InstitutionListItem
impl Clone for InstitutionListItem
Source§fn clone(&self) -> InstitutionListItem
fn clone(&self) -> InstitutionListItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstitutionListItem
impl Debug for InstitutionListItem
Source§impl Default for InstitutionListItem
impl Default for InstitutionListItem
Source§impl<'de> Deserialize<'de> for InstitutionListItemwhere
InstitutionListItem: Default,
impl<'de> Deserialize<'de> for InstitutionListItemwhere
InstitutionListItem: 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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for InstitutionListItem
impl Message for InstitutionListItem
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
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,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
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,
Encodes the message with a length-delimiter to a buffer. Read more
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,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
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,
Decodes a length-delimited instance of the message from the buffer.
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,
Decodes an instance of the message from a buffer, and merges it into
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,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for InstitutionListItem
impl PartialEq for InstitutionListItem
Source§impl Serialize for InstitutionListItem
impl Serialize for InstitutionListItem
impl StructuralPartialEq for InstitutionListItem
Auto Trait Implementations§
impl Freeze for InstitutionListItem
impl RefUnwindSafe for InstitutionListItem
impl Send for InstitutionListItem
impl Sync for InstitutionListItem
impl Unpin for InstitutionListItem
impl UnsafeUnpin for InstitutionListItem
impl UnwindSafe for InstitutionListItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more