pub struct SchemaTotals {
pub types_sent: u32,
pub endpoints_sent: u32,
pub topics_in_sent: u32,
pub topics_out_sent: u32,
pub errors: u32,
}
Expand description
A summary of all messages sent when streaming schema data
Fields§
§types_sent: u32
A count of the number of (Owned)SchemaData::Type messages sent
endpoints_sent: u32
A count of the number of (Owned)SchemaData::Endpoint messages sent
topics_in_sent: u32
A count of the number of (Owned)SchemaData::Topic messages sent
topics_out_sent: u32
A count of the number of (Owned)SchemaData::Topic messages sent
errors: u32
A count of the number of messages (any of the above) that failed to send
Trait Implementations§
Source§impl Clone for SchemaTotals
impl Clone for SchemaTotals
Source§fn clone(&self) -> SchemaTotals
fn clone(&self) -> SchemaTotals
Returns a copy 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 SchemaTotals
impl Debug for SchemaTotals
Source§impl<'de> Deserialize<'de> for SchemaTotals
impl<'de> Deserialize<'de> for SchemaTotals
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 SchemaTotals
impl PartialEq for SchemaTotals
Source§impl Schema for SchemaTotals
impl Schema for SchemaTotals
Source§impl Serialize for SchemaTotals
impl Serialize for SchemaTotals
impl Copy for SchemaTotals
impl StructuralPartialEq for SchemaTotals
Auto Trait Implementations§
impl Freeze for SchemaTotals
impl RefUnwindSafe for SchemaTotals
impl Send for SchemaTotals
impl Sync for SchemaTotals
impl Unpin for SchemaTotals
impl UnwindSafe for SchemaTotals
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