pub enum OnCommitAction {
PreserveRows(Span),
DeleteRows(Span),
Drop(Span),
}Expand description
Action for ON COMMIT clause on temporary tables
Variants§
Trait Implementations§
Source§impl Clone for OnCommitAction
impl Clone for OnCommitAction
Source§fn clone(&self) -> OnCommitAction
fn clone(&self) -> OnCommitAction
Returns a duplicate of the value. Read more
1.0.0 · 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 OnCommitAction
impl Debug for OnCommitAction
Auto Trait Implementations§
impl Freeze for OnCommitAction
impl RefUnwindSafe for OnCommitAction
impl Send for OnCommitAction
impl Sync for OnCommitAction
impl Unpin for OnCommitAction
impl UnsafeUnpin for OnCommitAction
impl UnwindSafe for OnCommitAction
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