pub struct DirtyPageReference {
pub offset: u32,
pub size: u32,
}Expand description
Reference to a dirty page in a new format log entry.
Fields§
§offset: u32Offset of page in primary file (relative to hive bins data).
size: u32Size of page in bytes.
Trait Implementations§
Source§impl Clone for DirtyPageReference
impl Clone for DirtyPageReference
Source§fn clone(&self) -> DirtyPageReference
fn clone(&self) -> DirtyPageReference
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 moreAuto Trait Implementations§
impl Freeze for DirtyPageReference
impl RefUnwindSafe for DirtyPageReference
impl Send for DirtyPageReference
impl Sync for DirtyPageReference
impl Unpin for DirtyPageReference
impl UnsafeUnpin for DirtyPageReference
impl UnwindSafe for DirtyPageReference
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