#[repr(u8)]pub enum StmtType {
Show 14 variants
Select = 1,
Insert = 2,
Update = 3,
Delete = 4,
Ddl = 5,
GetSegment = 6,
PutSegment = 7,
ExecProcedure = 8,
StartTrans = 9,
Commit = 10,
Rollback = 11,
SelectForUpd = 12,
SetGenerator = 13,
Savepoint = 14,
}
Expand description
Statement type
Variants§
Select = 1
Insert = 2
Update = 3
Delete = 4
Ddl = 5
GetSegment = 6
PutSegment = 7
ExecProcedure = 8
StartTrans = 9
Commit = 10
Rollback = 11
SelectForUpd = 12
SetGenerator = 13
Savepoint = 14
Trait Implementations§
Source§impl TryFromPrimitive for StmtType
impl TryFromPrimitive for StmtType
impl Copy for StmtType
impl Eq for StmtType
impl StructuralPartialEq for StmtType
Auto Trait Implementations§
impl Freeze for StmtType
impl RefUnwindSafe for StmtType
impl Send for StmtType
impl Sync for StmtType
impl Unpin for StmtType
impl UnwindSafe for StmtType
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