pub struct SubQueryDef {
pub query: Box<QueryStmt>,
pub alias: String,
}Expand description
Subquery with alias.
Fields§
§query: Box<QueryStmt>§alias: StringTrait Implementations§
Source§impl Clone for SubQueryDef
impl Clone for SubQueryDef
Source§fn clone(&self) -> SubQueryDef
fn clone(&self) -> SubQueryDef
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 SubQueryDef
impl !RefUnwindSafe for SubQueryDef
impl Send for SubQueryDef
impl Sync for SubQueryDef
impl Unpin for SubQueryDef
impl UnsafeUnpin for SubQueryDef
impl !UnwindSafe for SubQueryDef
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