mirror of
https://github.com/isar/rusqlite.git
synced 2025-09-16 04:32:19 +08:00
Fix missing docs
This commit is contained in:
@@ -14,9 +14,13 @@ use crate::{Connection, InnerConnection};
|
||||
#[repr(i32)]
|
||||
#[non_exhaustive]
|
||||
pub enum Action {
|
||||
/// Unsupported / unexpected action
|
||||
UNKNOWN = -1,
|
||||
/// DELETE command
|
||||
SQLITE_DELETE = ffi::SQLITE_DELETE,
|
||||
/// INSERT command
|
||||
SQLITE_INSERT = ffi::SQLITE_INSERT,
|
||||
/// UPDATE command
|
||||
SQLITE_UPDATE = ffi::SQLITE_UPDATE,
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user