pub enum AuthorizerAction {
Show 34 variants
CreateIndex,
CreateTable,
CreateTempIndex,
CreateTempTable,
CreateTempTrigger,
CreateTempView,
CreateTrigger,
CreateView,
Delete,
DropIndex,
DropTable,
DropTempIndex,
DropTempTable,
DropTempTrigger,
DropTempView,
DropTrigger,
DropView,
Insert,
Pragma,
Read,
Select,
Transaction,
Update,
Attach,
Detach,
AlterTable,
Reindex,
Analyze,
CreateVTable,
DropVTable,
Function,
Savepoint,
Recursive,
Unknown(i32),
}Expand description
Authorizer action decoded from the SQLite action code.
Variants§
CreateIndex
Create index operation.
CreateTable
Create table operation.
CreateTempIndex
Create temporary index operation.
CreateTempTable
Create temporary table operation.
CreateTempTrigger
Create temporary trigger operation.
CreateTempView
Create temporary view operation.
CreateTrigger
Create trigger operation.
CreateView
Create view operation.
Delete
Delete operation.
DropIndex
Drop index operation.
DropTable
Drop table operation.
DropTempIndex
Drop temporary index operation.
DropTempTable
Drop temporary table operation.
DropTempTrigger
Drop temporary trigger operation.
DropTempView
Drop temporary view operation.
DropTrigger
Drop trigger operation.
DropView
Drop view operation.
Insert
Insert operation.
Pragma
PRAGMA operation.
Read
Read operation.
Select
Select operation.
Transaction
Transaction control operation.
Update
Update operation.
Attach
Attach database operation.
Detach
Detach database operation.
AlterTable
Alter-table operation.
Reindex
Reindex operation.
Analyze
Analyze operation.
CreateVTable
Create virtual-table operation.
DropVTable
Drop virtual-table operation.
Function
Function invocation operation.
Savepoint
Savepoint operation.
Recursive
Recursive query operation.
Unknown(i32)
Unrecognized authorizer action code.
Implementations§
Trait Implementations§
Source§impl Clone for AuthorizerAction
impl Clone for AuthorizerAction
Source§fn clone(&self) -> AuthorizerAction
fn clone(&self) -> AuthorizerAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more