pub struct CommonTableExpression {
pub name: String,
pub recursive: bool,
pub query: Box<SelectStatement>,
}Fields§
§name: String§recursive: bool§query: Box<SelectStatement>Trait Implementations§
Source§impl Clone for CommonTableExpression
impl Clone for CommonTableExpression
Source§fn clone(&self) -> CommonTableExpression
fn clone(&self) -> CommonTableExpression
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 CommonTableExpression
impl RefUnwindSafe for CommonTableExpression
impl Send for CommonTableExpression
impl Sync for CommonTableExpression
impl Unpin for CommonTableExpression
impl UnsafeUnpin for CommonTableExpression
impl UnwindSafe for CommonTableExpression
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