pub struct Round {
pub slot_id: u32,
pub len: usize,
pub skip: bool,
pub file_index: u64,
pub fdata_offset: u64,
pub chunk_seq: u32,
/* private fields */
}Expand description
One unit of work. Borrows bytes inside slot slot_id; valid until the slot
is released. Carries everything needed to build a ChunkMeta later.
Fields§
§slot_id: u32§len: usize§skip: bool§file_index: u64§fdata_offset: u64§chunk_seq: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Sync for Round
impl Freeze for Round
impl RefUnwindSafe for Round
impl Unpin for Round
impl UnsafeUnpin for Round
impl UnwindSafe for Round
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