pub struct StandaloneCall {
pub function_name: String,
pub args: Vec<Expression>,
}Expand description
CALL statement — invoke a table function or procedure as a standalone statement.
Fields§
§function_name: String§args: Vec<Expression>Trait Implementations§
Source§impl Clone for StandaloneCall
impl Clone for StandaloneCall
Source§fn clone(&self) -> StandaloneCall
fn clone(&self) -> StandaloneCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StandaloneCall
impl Debug for StandaloneCall
Source§impl PartialEq for StandaloneCall
impl PartialEq for StandaloneCall
impl StructuralPartialEq for StandaloneCall
Auto Trait Implementations§
impl Freeze for StandaloneCall
impl RefUnwindSafe for StandaloneCall
impl Send for StandaloneCall
impl Sync for StandaloneCall
impl Unpin for StandaloneCall
impl UnsafeUnpin for StandaloneCall
impl UnwindSafe for StandaloneCall
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