pub struct RegionReference {
pub raw: Vec<u8>,
}Expand description
A region reference: raw bytes that encode a dataset selection.
Fields§
§raw: Vec<u8>The raw region reference bytes. A region reference is typically 12 bytes (object address + dataspace selection) but the exact layout depends on the file’s offset size and the selection type.
Trait Implementations§
Source§impl Clone for RegionReference
impl Clone for RegionReference
Source§fn clone(&self) -> RegionReference
fn clone(&self) -> RegionReference
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 RegionReference
impl Debug for RegionReference
impl Eq for RegionReference
Source§impl PartialEq for RegionReference
impl PartialEq for RegionReference
impl StructuralPartialEq for RegionReference
Auto Trait Implementations§
impl Freeze for RegionReference
impl RefUnwindSafe for RegionReference
impl Send for RegionReference
impl Sync for RegionReference
impl Unpin for RegionReference
impl UnsafeUnpin for RegionReference
impl UnwindSafe for RegionReference
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