pub struct QueryAction {
pub assignments: Vec<(String, String)>,
pub calls: Vec<String>,
}Expand description
Action to execute based on query result
Fields§
§assignments: Vec<(String, String)>Assignment: Variable = Value (as string to be parsed)
calls: Vec<String>Function/method calls
Implementations§
Trait Implementations§
Source§impl Clone for QueryAction
impl Clone for QueryAction
Source§fn clone(&self) -> QueryAction
fn clone(&self) -> QueryAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QueryAction
impl RefUnwindSafe for QueryAction
impl Send for QueryAction
impl Sync for QueryAction
impl Unpin for QueryAction
impl UnwindSafe for QueryAction
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