pub struct DataBlockObjectFrame {
pub object_id: u32,
pub raw_object_id: Vec<u8>,
pub offset: usize,
}Expand description
Compact object frame in a bounded offset-store block.
Fields§
§object_id: u32Serialized persistent object ID.
raw_object_id: Vec<u8>Exact serialized compact object-index token.
offset: usizeBlock-relative offset of the compact index.
Trait Implementations§
Source§impl Clone for DataBlockObjectFrame
impl Clone for DataBlockObjectFrame
Source§fn clone(&self) -> DataBlockObjectFrame
fn clone(&self) -> DataBlockObjectFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DataBlockObjectFrame
impl Debug for DataBlockObjectFrame
impl Eq for DataBlockObjectFrame
Source§impl PartialEq for DataBlockObjectFrame
impl PartialEq for DataBlockObjectFrame
impl StructuralPartialEq for DataBlockObjectFrame
Auto Trait Implementations§
impl Freeze for DataBlockObjectFrame
impl RefUnwindSafe for DataBlockObjectFrame
impl Send for DataBlockObjectFrame
impl Sync for DataBlockObjectFrame
impl Unpin for DataBlockObjectFrame
impl UnsafeUnpin for DataBlockObjectFrame
impl UnwindSafe for DataBlockObjectFrame
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