pub struct GetApplProofCompanyReq {
pub sort_field: Option<i32>,
pub is_order: Option<i32>,
pub index_from: Option<u32>,
pub max_count: Option<u32>,
}Fields§
§sort_field: Option<i32>排序字段,参考ApplProofReq_SortField.目前支持排序的字段为日期、板块。如果未指定该字段,则(默认情况下)“已通过聆讯”企业在前,“正在处理”企业在后,其次按时期从高往低排序
is_order: Option<i32>是否逆序:修改默认的排序方式。如果未指定该字段,排序日期时从高往低排序;排序板块时,主板在前(目前只有主板和创业板)
index_from: Option<u32>分布加载需求,指定此次请求返回列表的起始索引。未指定时,该值为1,表示从第1个企业开始显示
max_count: Option<u32>指定最多返回数;未指定时,该值为20
Implementations§
Source§impl GetApplProofCompanyReq
impl GetApplProofCompanyReq
Sourcepub fn sort_field(&self) -> i32
pub fn sort_field(&self) -> i32
Returns the value of sort_field, or the default value if sort_field is unset.
Sourcepub fn is_order(&self) -> i32
pub fn is_order(&self) -> i32
Returns the value of is_order, or the default value if is_order is unset.
Sourcepub fn index_from(&self) -> u32
pub fn index_from(&self) -> u32
Returns the value of index_from, or the default value if index_from is unset.
Trait Implementations§
Source§impl Clone for GetApplProofCompanyReq
impl Clone for GetApplProofCompanyReq
Source§fn clone(&self) -> GetApplProofCompanyReq
fn clone(&self) -> GetApplProofCompanyReq
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 GetApplProofCompanyReq
impl Debug for GetApplProofCompanyReq
Source§impl Default for GetApplProofCompanyReq
impl Default for GetApplProofCompanyReq
Source§impl Hash for GetApplProofCompanyReq
impl Hash for GetApplProofCompanyReq
Source§impl Message for GetApplProofCompanyReq
impl Message for GetApplProofCompanyReq
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 GetApplProofCompanyReq
impl PartialEq for GetApplProofCompanyReq
impl Copy for GetApplProofCompanyReq
impl Eq for GetApplProofCompanyReq
impl StructuralPartialEq for GetApplProofCompanyReq
Auto Trait Implementations§
impl Freeze for GetApplProofCompanyReq
impl RefUnwindSafe for GetApplProofCompanyReq
impl Send for GetApplProofCompanyReq
impl Sync for GetApplProofCompanyReq
impl Unpin for GetApplProofCompanyReq
impl UnsafeUnpin for GetApplProofCompanyReq
impl UnwindSafe for GetApplProofCompanyReq
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
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
Checks if this value is equivalent to the given key. Read more
§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
Checks if this value is equivalent to the given key. Read more
§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
Compare self to
key and return true if they are equal.