pub struct ApplProofCompanyItem {
pub name: Option<String>,
pub process: Option<i32>,
pub process_desc: Option<String>,
pub apply_date: Option<String>,
pub apply_date_timestamp: Option<u64>,
pub plate_name: Option<String>,
pub listed_sector: Option<i32>,
pub book_link: Option<String>,
}Fields§
§name: Option<String>企业名称
process: Option<i32>取值为1和2
process_desc: Option<String>状态描述,状态1表示 “正在处理”,2表示“已通过聆讯”
apply_date: Option<String>申请时间,格式为“xxxx-xx-xx xx:xx:xx”,状态为“已递表”时,意义为“刊发申请版本日期”;状态为“已通过聆讯”时,意义为“刊发聆讯后资料集日期”
apply_date_timestamp: Option<u64>申请时间对应的时间戳
plate_name: Option<String>板块名称,通过listed_sector字段关联其它表获得该值。1表示主板,6表示创业板。
listed_sector: Option<i32>聚源表中的板块标识,1表示主板,6表示创业板。
book_link: Option<String>招股书链接,聚源目前没有,先留着这个字段
Implementations§
Source§impl ApplProofCompanyItem
impl ApplProofCompanyItem
Sourcepub fn process(&self) -> i32
pub fn process(&self) -> i32
Returns the value of process, or the default value if process is unset.
Sourcepub fn process_desc(&self) -> &str
pub fn process_desc(&self) -> &str
Returns the value of process_desc, or the default value if process_desc is unset.
Sourcepub fn apply_date(&self) -> &str
pub fn apply_date(&self) -> &str
Returns the value of apply_date, or the default value if apply_date is unset.
Sourcepub fn plate_name(&self) -> &str
pub fn plate_name(&self) -> &str
Returns the value of plate_name, or the default value if plate_name is unset.
Sourcepub fn listed_sector(&self) -> i32
pub fn listed_sector(&self) -> i32
Returns the value of listed_sector, or the default value if listed_sector is unset.
Sourcepub fn book_link(&self) -> &str
pub fn book_link(&self) -> &str
Returns the value of book_link, or the default value if book_link is unset.
Sourcepub fn apply_date_timestamp(&self) -> u64
pub fn apply_date_timestamp(&self) -> u64
Returns the value of apply_date_timestamp, or the default value if apply_date_timestamp is unset.
Trait Implementations§
Source§impl Clone for ApplProofCompanyItem
impl Clone for ApplProofCompanyItem
Source§fn clone(&self) -> ApplProofCompanyItem
fn clone(&self) -> ApplProofCompanyItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ApplProofCompanyItem
impl Debug for ApplProofCompanyItem
Source§impl Default for ApplProofCompanyItem
impl Default for ApplProofCompanyItem
Source§impl Hash for ApplProofCompanyItem
impl Hash for ApplProofCompanyItem
Source§impl Message for ApplProofCompanyItem
impl Message for ApplProofCompanyItem
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.Source§impl PartialEq for ApplProofCompanyItem
impl PartialEq for ApplProofCompanyItem
impl Eq for ApplProofCompanyItem
impl StructuralPartialEq for ApplProofCompanyItem
Auto Trait Implementations§
impl Freeze for ApplProofCompanyItem
impl RefUnwindSafe for ApplProofCompanyItem
impl Send for ApplProofCompanyItem
impl Sync for ApplProofCompanyItem
impl Unpin for ApplProofCompanyItem
impl UnsafeUnpin for ApplProofCompanyItem
impl UnwindSafe for ApplProofCompanyItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.