pub struct Perform<'a> {
pub perform_span: Span,
pub expr: Expression<'a>,
}Expand description
PL/pgSQL PERFORM statement - executes an expression and discards the result.
Fields§
§perform_span: SpanSpan of “PERFORM”
expr: Expression<'a>Expression to evaluate
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Perform<'a>
impl<'a> RefUnwindSafe for Perform<'a>
impl<'a> Send for Perform<'a>
impl<'a> Sync for Perform<'a>
impl<'a> Unpin for Perform<'a>
impl<'a> UnsafeUnpin for Perform<'a>
impl<'a> UnwindSafe for Perform<'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