pub struct WithBlock<'a> {
pub identifier: Identifier<'a>,
pub as_span: Span,
pub lparen_span: Span,
pub statement: Statement<'a>,
pub rparen_span: Span,
}Fields§
§identifier: Identifier<'a>Identifier for the with block
as_span: SpanSpan of AS
lparen_span: SpanSpan of (
statement: Statement<'a>The statement within the with block, will be one of select, update, insert or delete
rparen_span: SpanSpan of )
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WithBlock<'a>
impl<'a> RefUnwindSafe for WithBlock<'a>
impl<'a> Send for WithBlock<'a>
impl<'a> Sync for WithBlock<'a>
impl<'a> Unpin for WithBlock<'a>
impl<'a> UnwindSafe for WithBlock<'a>
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