pub struct RetrieveProperties {
pub basic_properties: Vec<PropertyBasic>,
pub simple_properties: Vec<PropertySimple>,
pub cumulative_properties: Vec<PropertyCumulative>,
pub financial_properties: Vec<PropertyFinancial>,
pub indicator_properties: Vec<PropertyIndicator>,
pub featured_properties: Vec<PropertyFeatured>,
pub broker_properties: Vec<PropertyBroker>,
}Expand description
获取属性设置
Fields§
§basic_properties: Vec<PropertyBasic>获取基本行情属性设置
simple_properties: Vec<PropertySimple>获取简单行情属性设置
cumulative_properties: Vec<PropertyCumulative>获取累积值行情属性设置
financial_properties: Vec<PropertyFinancial>获取财务指标属性设置
indicator_properties: Vec<PropertyIndicator>获取技术指标属性设置
featured_properties: Vec<PropertyFeatured>获取特色指标属性设置
broker_properties: Vec<PropertyBroker>获取经纪商持股数据设置
Trait Implementations§
Source§impl Clone for RetrieveProperties
impl Clone for RetrieveProperties
Source§fn clone(&self) -> RetrieveProperties
fn clone(&self) -> RetrieveProperties
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 RetrieveProperties
impl Debug for RetrieveProperties
Source§impl Default for RetrieveProperties
impl Default for RetrieveProperties
Source§impl Message for RetrieveProperties
impl Message for RetrieveProperties
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 RetrieveProperties
impl PartialEq for RetrieveProperties
impl StructuralPartialEq for RetrieveProperties
Auto Trait Implementations§
impl Freeze for RetrieveProperties
impl RefUnwindSafe for RetrieveProperties
impl Send for RetrieveProperties
impl Sync for RetrieveProperties
impl Unpin for RetrieveProperties
impl UnsafeUnpin for RetrieveProperties
impl UnwindSafe for RetrieveProperties
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