pub struct BrokerInfo {
pub category: Vec<String>,
pub url: String,
pub broker_type: Option<String>,
pub smtype: Option<String>,
pub smconfig: Option<String>,
pub condition_type: Option<String>,
pub condition_config: Option<String>,
}Expand description
期货公司信息
Fields§
§category: Vec<String>§url: String§broker_type: Option<String>§smtype: Option<String>§smconfig: Option<String>§condition_type: Option<String>§condition_config: Option<String>Trait Implementations§
Source§impl Clone for BrokerInfo
impl Clone for BrokerInfo
Source§fn clone(&self) -> BrokerInfo
fn clone(&self) -> BrokerInfo
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 BrokerInfo
impl Debug for BrokerInfo
Source§impl<'de> Deserialize<'de> for BrokerInfo
impl<'de> Deserialize<'de> for BrokerInfo
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
Auto Trait Implementations§
impl Freeze for BrokerInfo
impl RefUnwindSafe for BrokerInfo
impl Send for BrokerInfo
impl Sync for BrokerInfo
impl Unpin for BrokerInfo
impl UnwindSafe for BrokerInfo
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