pub enum TopicMessage {
Order(PrivateMsg<Vec<OrderMsg>>),
Position(PrivateMsg<Vec<PositionMsg>>),
Wallet(PrivateMsg<Vec<WalletMsg>>),
Execution(PrivateMsg<Vec<ExecutionMsg>>),
}Variants§
Order(PrivateMsg<Vec<OrderMsg>>)
Position(PrivateMsg<Vec<PositionMsg>>)
Wallet(PrivateMsg<Vec<WalletMsg>>)
Execution(PrivateMsg<Vec<ExecutionMsg>>)
Trait Implementations§
Source§impl Debug for TopicMessage
impl Debug for TopicMessage
Source§impl<'de> Deserialize<'de> for TopicMessage
impl<'de> Deserialize<'de> for TopicMessage
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
Source§impl PartialEq for TopicMessage
impl PartialEq for TopicMessage
Source§fn eq(&self, other: &TopicMessage) -> bool
fn eq(&self, other: &TopicMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TopicMessage
Auto Trait Implementations§
impl Freeze for TopicMessage
impl RefUnwindSafe for TopicMessage
impl Send for TopicMessage
impl Sync for TopicMessage
impl Unpin for TopicMessage
impl UnsafeUnpin for TopicMessage
impl UnwindSafe for TopicMessage
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