pub struct TestCommand<'a> {
pub command: &'a str,
pub options: Vec<TestOption<'a>>,
}
Expand description
A command appearing in a test file.
Fields§
§command: &'a str
The command name as a string.
options: Vec<TestOption<'a>>
The options following the command name.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for TestCommand<'a>
impl<'a> Clone for TestCommand<'a>
Source§fn clone(&self) -> TestCommand<'a>
fn clone(&self) -> TestCommand<'a>
Returns a copy 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 moreSource§impl<'a> Debug for TestCommand<'a>
impl<'a> Debug for TestCommand<'a>
Source§impl<'a> Display for TestCommand<'a>
impl<'a> Display for TestCommand<'a>
Source§impl<'a> PartialEq for TestCommand<'a>
impl<'a> PartialEq for TestCommand<'a>
impl<'a> Eq for TestCommand<'a>
impl<'a> StructuralPartialEq for TestCommand<'a>
Auto Trait Implementations§
impl<'a> Freeze for TestCommand<'a>
impl<'a> RefUnwindSafe for TestCommand<'a>
impl<'a> Send for TestCommand<'a>
impl<'a> Sync for TestCommand<'a>
impl<'a> Unpin for TestCommand<'a>
impl<'a> UnwindSafe for TestCommand<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.