pub struct WalFrame {
pub page_number: u32,
pub db_size_after_commit: u32,
pub salt1: u32,
pub salt2: u32,
pub page_data_offset: usize,
}Fields§
§page_number: u32§db_size_after_commit: u32Non-zero means this is a commit frame.
salt1: u32§salt2: u32§page_data_offset: usizeByte offset of the page data within the WAL byte slice.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalFrame
impl RefUnwindSafe for WalFrame
impl Send for WalFrame
impl Sync for WalFrame
impl Unpin for WalFrame
impl UnsafeUnpin for WalFrame
impl UnwindSafe for WalFrame
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