pub struct IntoChain { /* private fields */ }Expand description
An INSERT’s target under construction: INTO "t" AS "alias" ("a", "b").
A different chain from TableChain because the grammars differ. An INSERT
target is a plain table name with an alias and an insert column list; a
from-item is a qualified-table-name with an alias and an index directive.
Neither decoration belongs on the other, so neither is offered there.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for IntoChain
impl !UnwindSafe for IntoChain
impl Freeze for IntoChain
impl Send for IntoChain
impl Sync for IntoChain
impl Unpin for IntoChain
impl UnsafeUnpin for IntoChain
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