pub enum OwnedSQLChunk<V: SQLParam> {
Text(CompactString),
Param(OwnedParam<V>),
SQL(Box<OwnedSQL<V>>),
Table(&'static dyn SQLTableInfo),
Column(&'static dyn SQLColumnInfo),
Alias {
chunk: Box<OwnedSQLChunk<V>>,
alias: CompactString,
},
Subquery(Box<OwnedSQL<V>>),
}Variants§
Text(CompactString)
Param(OwnedParam<V>)
SQL(Box<OwnedSQL<V>>)
Table(&'static dyn SQLTableInfo)
Column(&'static dyn SQLColumnInfo)
Alias
Subquery(Box<OwnedSQL<V>>)
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for OwnedSQLChunk<V>where
V: Freeze,
impl<V> !RefUnwindSafe for OwnedSQLChunk<V>
impl<V> Send for OwnedSQLChunk<V>where
V: Send,
impl<V> Sync for OwnedSQLChunk<V>where
V: Sync,
impl<V> Unpin for OwnedSQLChunk<V>where
V: Unpin,
impl<V> !UnwindSafe for OwnedSQLChunk<V>
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