pub struct ChunkStat<T>where
T: Types,{
pub chunk_id: ChunkId,
pub records_count: u64,
pub global_start: u64,
pub global_end: u64,
pub size: u64,
pub log_state: RaftLogState<T>,
}Fields§
§chunk_id: ChunkId§records_count: u64§global_start: u64§global_end: u64§size: u64§log_state: RaftLogState<T>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ChunkStat<T>
impl<T> RefUnwindSafe for ChunkStat<T>where
<T as Types>::Vote: RefUnwindSafe,
<T as Types>::LogId: RefUnwindSafe,
<T as Types>::UserData: RefUnwindSafe,
impl<T> Send for ChunkStat<T>
impl<T> Sync for ChunkStat<T>
impl<T> Unpin for ChunkStat<T>
impl<T> UnwindSafe for ChunkStat<T>where
<T as Types>::Vote: UnwindSafe,
<T as Types>::LogId: UnwindSafe,
<T as Types>::UserData: UnwindSafe,
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