pub enum CommandTag {
}Expand description
A PostgreSQL-style command-completion tag, pairing the tag string with the row-count for DML statements.
Variants§
Select(u64)
Insert(u64)
Update(u64)
Delete(u64)
CreateTable
CreateView
DropView
AlterTable
Begin
Commit
Rollback
Set
Reset
Empty
Implementations§
Trait Implementations§
Source§impl Clone for CommandTag
impl Clone for CommandTag
Source§fn clone(&self) -> CommandTag
fn clone(&self) -> CommandTag
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommandTag
impl Debug for CommandTag
impl Eq for CommandTag
Source§impl PartialEq for CommandTag
impl PartialEq for CommandTag
impl StructuralPartialEq for CommandTag
Auto Trait Implementations§
impl Freeze for CommandTag
impl RefUnwindSafe for CommandTag
impl Send for CommandTag
impl Sync for CommandTag
impl Unpin for CommandTag
impl UnsafeUnpin for CommandTag
impl UnwindSafe for CommandTag
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