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<StreamIntegritySnapshot, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StreamIntegritySnapshot, <__D as Deserializer<'de>>::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§impl Serialize for StreamIntegritySnapshot
impl Serialize for StreamIntegritySnapshot
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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