pub struct WithStatement {
pub ctes: Vec<Cte>,
pub recursive: bool,
pub statement: Box<Statement>,
}Fields§
§ctes: Vec<Cte>§recursive: bool§statement: Box<Statement>Trait Implementations§
Source§impl Clone for WithStatement
impl Clone for WithStatement
Source§fn clone(&self) -> WithStatement
fn clone(&self) -> WithStatement
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 WithStatement
impl RefUnwindSafe for WithStatement
impl Send for WithStatement
impl Sync for WithStatement
impl Unpin for WithStatement
impl UnwindSafe for WithStatement
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