Struct sqlite_rs::header::WriteLibraryVersion
source · pub struct WriteLibraryVersion(/* private fields */);Expand description
Write library version number (4 Bytes)
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.
Methods from Deref<Target = u32>§
pub const MIN: u32 = 0u32
pub const MAX: u32 = 4_294_967_295u32
pub const BITS: u32 = 32u32
Trait Implementations§
source§impl Debug for WriteLibraryVersion
impl Debug for WriteLibraryVersion
source§impl Deref for WriteLibraryVersion
impl Deref for WriteLibraryVersion
source§impl PartialEq<WriteLibraryVersion> for WriteLibraryVersion
impl PartialEq<WriteLibraryVersion> for WriteLibraryVersion
source§fn eq(&self, other: &WriteLibraryVersion) -> bool
fn eq(&self, other: &WriteLibraryVersion) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for WriteLibraryVersion
impl StructuralEq for WriteLibraryVersion
impl StructuralPartialEq for WriteLibraryVersion
Auto Trait Implementations§
impl RefUnwindSafe for WriteLibraryVersion
impl Send for WriteLibraryVersion
impl Sync for WriteLibraryVersion
impl Unpin for WriteLibraryVersion
impl UnwindSafe for WriteLibraryVersion
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