pub struct EntryInfo {
pub name: String,
pub size: u64,
pub record_count: u64,
pub block_count: u64,
pub oldest_record: u64,
pub latest_record: u64,
}
Expand description
Stats of entry
Fields§
§name: String
Entry name
size: u64
Size of entry in bytes
record_count: u64
Number of records in entry
block_count: u64
Number of blocks in entry
oldest_record: u64
Oldest record in entry
latest_record: u64
Latest record in entry
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EntryInfo
impl<'de> Deserialize<'de> for EntryInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for EntryInfo
impl Serialize for EntryInfo
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 EntryInfo
Auto Trait Implementations§
impl Freeze for EntryInfo
impl RefUnwindSafe for EntryInfo
impl Send for EntryInfo
impl Sync for EntryInfo
impl Unpin for EntryInfo
impl UnwindSafe for EntryInfo
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