pub struct RawRecordBytes {
pub address: RecordAddress,
pub bytes: Vec<u8>,
}Expand description
Yielded by RawTableReader::try_next.
Fields§
§address: RecordAddressAddress of the record (page + aligned offset to the length header).
bytes: Vec<u8>Decoded record body bytes (header stripped).
Trait Implementations§
Source§impl Clone for RawRecordBytes
impl Clone for RawRecordBytes
Source§fn clone(&self) -> RawRecordBytes
fn clone(&self) -> RawRecordBytes
Returns a duplicate of the value. Read more
1.0.0 · 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 RawRecordBytes
impl Debug for RawRecordBytes
Source§impl PartialEq for RawRecordBytes
impl PartialEq for RawRecordBytes
impl Eq for RawRecordBytes
impl StructuralPartialEq for RawRecordBytes
Auto Trait Implementations§
impl Freeze for RawRecordBytes
impl RefUnwindSafe for RawRecordBytes
impl Send for RawRecordBytes
impl Sync for RawRecordBytes
impl Unpin for RawRecordBytes
impl UnsafeUnpin for RawRecordBytes
impl UnwindSafe for RawRecordBytes
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