pub struct SchemaRegistryStats {
pub total_schemas: usize,
pub total_subjects: usize,
pub validations_performed: u64,
pub validation_failures: u64,
}Expand description
Statistics about the schema registry
Fields§
§total_schemas: usize§total_subjects: usize§validations_performed: u64§validation_failures: u64Trait Implementations§
Source§impl Clone for SchemaRegistryStats
impl Clone for SchemaRegistryStats
Source§fn clone(&self) -> SchemaRegistryStats
fn clone(&self) -> SchemaRegistryStats
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 SchemaRegistryStats
impl Debug for SchemaRegistryStats
Source§impl<'de> Deserialize<'de> for SchemaRegistryStats
impl<'de> Deserialize<'de> for SchemaRegistryStats
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 SchemaRegistryStats
impl RefUnwindSafe for SchemaRegistryStats
impl Send for SchemaRegistryStats
impl Sync for SchemaRegistryStats
impl Unpin for SchemaRegistryStats
impl UnsafeUnpin for SchemaRegistryStats
impl UnwindSafe for SchemaRegistryStats
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