Struct sql_from_models_parser::ast::Execute
source · pub struct Execute {
pub name: Ident,
pub parameters: Vec<Expr>,
}
Expand description
EXECUTE name [ ( parameter [, ...] ) ]
Note: this is a PostgreSQL-specific statement.
Fields§
§name: Ident
§parameters: Vec<Expr>
Trait Implementations§
source§impl PartialEq for Execute
impl PartialEq for Execute
impl Eq for Execute
impl StructuralPartialEq for Execute
Auto Trait Implementations§
impl RefUnwindSafe for Execute
impl Send for Execute
impl Sync for Execute
impl Unpin for Execute
impl UnwindSafe for Execute
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