pub struct LastUpdate {
pub sqlite_version_number: u32,
pub version_valid_for: u32,
}
Expand description
The 4-byte big-endian integer at offset 96 stores the SQLITE_VERSION_NUMBER value for the SQLite library that most recently modified the database file. The 4-byte big-endian integer at offset 92 is the value of the change counter when the version number was stored. The integer at offset 92 indicates which transaction the version number is valid for and is sometimes called the “version-valid-for number”.
Fields§
§sqlite_version_number: u32
§version_valid_for: u32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LastUpdate
impl RefUnwindSafe for LastUpdate
impl Send for LastUpdate
impl Sync for LastUpdate
impl Unpin for LastUpdate
impl UnwindSafe for LastUpdate
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