pub struct EchoReport {
pub config: EchoConfig,
pub messages: Vec<CapturedMessage>,
pub topic_stats: Vec<TopicStat>,
pub total_received: u64,
pub total_captured: u64,
}Expand description
Result of a topic echo session.
Fields§
§config: EchoConfigConfiguration used for this session.
messages: Vec<CapturedMessage>Captured messages across all topics.
topic_stats: Vec<TopicStat>Per-topic statistics.
total_received: u64Total messages received (before decimation).
total_captured: u64Total messages captured (after decimation).
Trait Implementations§
Source§impl Clone for EchoReport
impl Clone for EchoReport
Source§fn clone(&self) -> EchoReport
fn clone(&self) -> EchoReport
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 EchoReport
impl Debug for EchoReport
Source§impl<'de> Deserialize<'de> for EchoReport
impl<'de> Deserialize<'de> for EchoReport
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 EchoReport
impl RefUnwindSafe for EchoReport
impl Send for EchoReport
impl Sync for EchoReport
impl Unpin for EchoReport
impl UnsafeUnpin for EchoReport
impl UnwindSafe for EchoReport
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