pub struct CompactStatsResponse {
pub total_fragments: usize,
pub is_compacting: bool,
pub last_compaction: Option<DateTime<Utc>>,
pub last_error: Option<String>,
pub total_compactions: u64,
}Fields§
§total_fragments: usize§is_compacting: bool§last_compaction: Option<DateTime<Utc>>§last_error: Option<String>§total_compactions: u64Trait Implementations§
Source§impl Debug for CompactStatsResponse
impl Debug for CompactStatsResponse
Source§impl<'de> Deserialize<'de> for CompactStatsResponse
impl<'de> Deserialize<'de> for CompactStatsResponse
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 CompactStatsResponse
impl RefUnwindSafe for CompactStatsResponse
impl Send for CompactStatsResponse
impl Sync for CompactStatsResponse
impl Unpin for CompactStatsResponse
impl UnsafeUnpin for CompactStatsResponse
impl UnwindSafe for CompactStatsResponse
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