pub struct SqliteVersion;Expand description
The version of SQLite.
Implementations§
Source§impl SqliteVersion
impl SqliteVersion
Sourcepub fn as_i32(&self) -> i32
pub fn as_i32(&self) -> i32
Returns the numeric version of SQLite.
The format of this value is the semantic version with a simple encoding: major * 1000000 + minor * 1000 + patch. For example, SQLite version 3.8.2 is encoded as
3_008_002.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqliteVersion
impl RefUnwindSafe for SqliteVersion
impl Send for SqliteVersion
impl Sync for SqliteVersion
impl Unpin for SqliteVersion
impl UnsafeUnpin for SqliteVersion
impl UnwindSafe for SqliteVersion
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