pub struct BlockId {
pub file_id: u64,
pub block_offset: u64,
}Expand description
SSTable ブロックを一意に識別する ID(設計書 §3.5.2)。
Fields§
§file_id: u64SSTable ファイル ID。
block_offset: u64ブロックのファイル内オフセット。
Trait Implementations§
impl Copy for BlockId
impl Eq for BlockId
impl StructuralPartialEq for BlockId
Auto Trait Implementations§
impl Freeze for BlockId
impl RefUnwindSafe for BlockId
impl Send for BlockId
impl Sync for BlockId
impl Unpin for BlockId
impl UnsafeUnpin for BlockId
impl UnwindSafe for BlockId
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