mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-04-03 06:51:05 +00:00
Adjust a few descriptions
This commit is contained in:
parent
64c2c7f2df
commit
b9747f216d
@ -12,7 +12,7 @@ pub struct Connection {
|
|||||||
phantom: PhantomData<ffi::sqlite3>,
|
phantom: PhantomData<ffi::sqlite3>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A set of connection flags.
|
/// Flags for opening a database connection.
|
||||||
#[derive(Clone, Copy, Debug)]
|
#[derive(Clone, Copy, Debug)]
|
||||||
pub struct OpenFlags(c_int);
|
pub struct OpenFlags(c_int);
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ impl Connection {
|
|||||||
Connection::open_with_flags(path, OpenFlags::new().set_create().set_read_write())
|
Connection::open_with_flags(path, OpenFlags::new().set_create().set_read_write())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Open a database connection with a specific set of flags.
|
/// Open a database connection with specific flags.
|
||||||
pub fn open_with_flags<T: AsRef<Path>>(path: T, flags: OpenFlags) -> Result<Connection> {
|
pub fn open_with_flags<T: AsRef<Path>>(path: T, flags: OpenFlags) -> Result<Connection> {
|
||||||
let mut raw = 0 as *mut _;
|
let mut raw = 0 as *mut _;
|
||||||
unsafe {
|
unsafe {
|
||||||
@ -158,7 +158,7 @@ impl Drop for Connection {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl OpenFlags {
|
impl OpenFlags {
|
||||||
/// Create a set of connection flags.
|
/// Create flags for opening a database connection.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
OpenFlags(0)
|
OpenFlags(0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user