pub struct Call<'a> {
pub call_span: Span,
pub name: QualifiedName<'a>,
pub args: Vec<Expression<'a>>,
}Expand description
CALL statement — invokes a stored procedure
Fields§
§call_span: SpanSpan of “CALL”
name: QualifiedName<'a>Name of the procedure (possibly qualified)
args: Vec<Expression<'a>>Argument expressions
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Call<'a>
impl<'a> RefUnwindSafe for Call<'a>
impl<'a> Send for Call<'a>
impl<'a> Sync for Call<'a>
impl<'a> Unpin for Call<'a>
impl<'a> UnsafeUnpin for Call<'a>
impl<'a> UnwindSafe for Call<'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