pub struct DataBlockObjectReference {
pub offset: usize,
pub object_index: u32,
pub raw_object_index: Vec<u8>,
}Expand description
Object-index reference in one bounded offset-only OM data block.
Fields§
§offset: usizeByte offset of the object-index token within the containing byte range.
object_index: u32Referenced OM object ID.
raw_object_index: Vec<u8>Exact serialized object-index token.
Trait Implementations§
Source§impl Clone for DataBlockObjectReference
impl Clone for DataBlockObjectReference
Source§fn clone(&self) -> DataBlockObjectReference
fn clone(&self) -> DataBlockObjectReference
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 DataBlockObjectReference
impl Debug for DataBlockObjectReference
impl Eq for DataBlockObjectReference
Source§impl PartialEq for DataBlockObjectReference
impl PartialEq for DataBlockObjectReference
impl StructuralPartialEq for DataBlockObjectReference
Auto Trait Implementations§
impl Freeze for DataBlockObjectReference
impl RefUnwindSafe for DataBlockObjectReference
impl Send for DataBlockObjectReference
impl Sync for DataBlockObjectReference
impl Unpin for DataBlockObjectReference
impl UnsafeUnpin for DataBlockObjectReference
impl UnwindSafe for DataBlockObjectReference
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