pub type Message = ScannerMessage<Vec<Log>>;Expand description
The item type yielded by event subscription streams.
This is a ScannerMessage whose data payload is a batch of Log values.
Aliased Type§
pub enum Message {
Data(Vec<Log>),
Notification(Notification),
}Variants§
Data(Vec<Log>)
Data streamed to the subscriber.
Notification(Notification)
Notification about scanner state changes or important events.