pub enum Operation {
Read,
Write,
Schema,
Migrate,
Transaction,
Attach,
}Expand description
Capability/effect kind selected at the operation boundary.
Variants§
Read
Read checked rows.
Write
Apply a checked data mutation.
Schema
Apply an admitted schema operation.
Migrate
Apply an admitted migration.
Transaction
Enter a closure-managed transaction.
Attach
Attach a provider-specific locator.
Trait Implementations§
impl Copy for Operation
impl Eq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnsafeUnpin for Operation
impl UnwindSafe for Operation
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