Struct crypto_crawler::Message [−][src]
pub struct Message {
pub exchange: String,
pub market_type: MarketType,
pub msg_type: MessageType,
pub received_at: u64,
pub json: String,
}Expand description
Message represents messages received by crawlers.
Fields
exchange: StringThe exchange name, unique for each exchage
market_type: MarketTypeMarket type
msg_type: MessageTypeMessage type
received_at: u64Unix timestamp in milliseconds
json: Stringthe original message
Implementations
pub fn new(
exchange: String,
market_type: MarketType,
msg_type: MessageType,
json: String
) -> SelfTrait Implementations
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 RefUnwindSafe for Messageimpl UnwindSafe for Message