pub struct BrokerData {
pub security: Security,
pub ask_list: Vec<BrokerEntry>,
pub bid_list: Vec<BrokerEntry>,
}Expand description
经纪队列数据
Fields§
§security: Security§ask_list: Vec<BrokerEntry>§bid_list: Vec<BrokerEntry>Trait Implementations§
Source§impl Clone for BrokerData
impl Clone for BrokerData
Source§fn clone(&self) -> BrokerData
fn clone(&self) -> BrokerData
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 moreAuto Trait Implementations§
impl Freeze for BrokerData
impl RefUnwindSafe for BrokerData
impl Send for BrokerData
impl Sync for BrokerData
impl Unpin for BrokerData
impl UnwindSafe for BrokerData
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