pub enum InsertContext {
None,
Table(String),
Value((String, usize)),
}
Variants§
None
Table(String)
Contains the table name
Value((String, usize))
Contains the table name and the column index
Trait Implementations§
Source§impl Clone for InsertContext
impl Clone for InsertContext
Source§fn clone(&self) -> InsertContext
fn clone(&self) -> InsertContext
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 moreAuto Trait Implementations§
impl Freeze for InsertContext
impl RefUnwindSafe for InsertContext
impl Send for InsertContext
impl Sync for InsertContext
impl Unpin for InsertContext
impl UnwindSafe for InsertContext
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