pub struct CnIssueMessage {
pub pe: Option<String>,
pub industry_pe: Option<String>,
pub publish_shares: Option<String>,
pub apply_limit_mv: Option<String>,
pub is_apply_limit_mv_preview: Option<u32>,
pub lucky_ratio: Option<String>,
pub is_lucky_ratio_preview: Option<u32>,
pub lucky_numbers: Vec<LuckyNumber>,
pub publish_shares_num: Option<i64>,
pub apply_limit_mv_num: Option<i64>,
pub pe_num: Option<i64>,
}Expand description
发行信息
Fields§
§pe: Option<String>发行市盈率
industry_pe: Option<String>行业市盈率
发行总数
apply_limit_mv: Option<String>顶格申购需配市值
is_apply_limit_mv_preview: Option<u32>顶格申购需配市值是否预估值
lucky_ratio: Option<String>中签率
is_lucky_ratio_preview: Option<u32>中签率是否预估值(0为否,1为是)
lucky_numbers: Vec<LuckyNumber>中签号
发行总数,数值格式
apply_limit_mv_num: Option<i64>顶格申购需配市值, 数值格式
pe_num: Option<i64>发行市盈率,数值格式, 2位精度
Implementations§
Source§impl CnIssueMessage
impl CnIssueMessage
Sourcepub fn industry_pe(&self) -> &str
pub fn industry_pe(&self) -> &str
Returns the value of industry_pe, or the default value if industry_pe is unset.
Returns the value of publish_shares, or the default value if publish_shares is unset.
Sourcepub fn apply_limit_mv(&self) -> &str
pub fn apply_limit_mv(&self) -> &str
Returns the value of apply_limit_mv, or the default value if apply_limit_mv is unset.
Sourcepub fn is_apply_limit_mv_preview(&self) -> u32
pub fn is_apply_limit_mv_preview(&self) -> u32
Returns the value of is_apply_limit_mv_preview, or the default value if is_apply_limit_mv_preview is unset.
Sourcepub fn lucky_ratio(&self) -> &str
pub fn lucky_ratio(&self) -> &str
Returns the value of lucky_ratio, or the default value if lucky_ratio is unset.
Sourcepub fn is_lucky_ratio_preview(&self) -> u32
pub fn is_lucky_ratio_preview(&self) -> u32
Returns the value of is_lucky_ratio_preview, or the default value if is_lucky_ratio_preview is unset.
Returns the value of publish_shares_num, or the default value if publish_shares_num is unset.
Sourcepub fn apply_limit_mv_num(&self) -> i64
pub fn apply_limit_mv_num(&self) -> i64
Returns the value of apply_limit_mv_num, or the default value if apply_limit_mv_num is unset.
Trait Implementations§
Source§impl Clone for CnIssueMessage
impl Clone for CnIssueMessage
Source§fn clone(&self) -> CnIssueMessage
fn clone(&self) -> CnIssueMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CnIssueMessage
impl Debug for CnIssueMessage
Source§impl Default for CnIssueMessage
impl Default for CnIssueMessage
Source§impl Message for CnIssueMessage
impl Message for CnIssueMessage
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.