pub struct StreamIntegritySnapshot {
pub live_setsum: String,
pub evicted_setsum: String,
pub total_setsum: String,
pub live_start_offset: u64,
pub tail_offset: u64,
pub live_records: u64,
pub evicted_records: u64,
pub total_records: u64,
}Fields§
§live_setsum: String§evicted_setsum: String§total_setsum: String§live_start_offset: u64§tail_offset: u64§live_records: u64§evicted_records: u64§total_records: u64Trait Implementations§
Source§impl Clone for StreamIntegritySnapshot
impl Clone for StreamIntegritySnapshot
Source§fn clone(&self) -> StreamIntegritySnapshot
fn clone(&self) -> StreamIntegritySnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StreamIntegritySnapshot
impl Debug for StreamIntegritySnapshot
Source§impl<'de> Deserialize<'de> for StreamIntegritySnapshot
impl<'de> Deserialize<'de> for StreamIntegritySnapshot
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
impl Eq for StreamIntegritySnapshot
Source§impl PartialEq for StreamIntegritySnapshot
impl PartialEq for StreamIntegritySnapshot
Source§fn eq(&self, other: &StreamIntegritySnapshot) -> bool
fn eq(&self, other: &StreamIntegritySnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StreamIntegritySnapshot
impl Serialize for StreamIntegritySnapshot
impl StructuralPartialEq for StreamIntegritySnapshot
Auto Trait Implementations§
impl Freeze for StreamIntegritySnapshot
impl RefUnwindSafe for StreamIntegritySnapshot
impl Send for StreamIntegritySnapshot
impl Sync for StreamIntegritySnapshot
impl Unpin for StreamIntegritySnapshot
impl UnsafeUnpin for StreamIntegritySnapshot
impl UnwindSafe for StreamIntegritySnapshot
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