pub enum RunCommand {
Print(Invocation),
Run(Invocation, Comparison, Vec<DataValue>),
}
Expand description
A run command appearing in a test file.
For parsing, see Parser::parse_run_command
Variants§
Print(Invocation)
Invoke a function and print its result.
Run(Invocation, Comparison, Vec<DataValue>)
Invoke a function and compare its result to a value sequence.
Implementations§
Source§impl RunCommand
impl RunCommand
Sourcepub fn run<F>(&self, invoke_fn: F) -> Result<(), String>
pub fn run<F>(&self, invoke_fn: F) -> Result<(), String>
Run the RunCommand:
- for RunCommand::Print, print the returned values from invoking the function.
- for RunCommand::Run, compare the returned values from the invoked function and
return an
Err
with a descriptive string if the comparison fails.
Accepts a function used for invoking the actual execution of the command. This function,
invoked_fn
, is passed the function name and function arguments of the Invocation.
Trait Implementations§
Source§impl Debug for RunCommand
impl Debug for RunCommand
Source§impl Display for RunCommand
impl Display for RunCommand
Source§impl PartialEq for RunCommand
impl PartialEq for RunCommand
impl StructuralPartialEq for RunCommand
Auto Trait Implementations§
impl Freeze for RunCommand
impl RefUnwindSafe for RunCommand
impl Send for RunCommand
impl Sync for RunCommand
impl Unpin for RunCommand
impl UnwindSafe for RunCommand
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