pub enum TestSetupFormat {
Npm,
Make,
Shell,
Compose,
Curl,
All,
}Variants§
Npm
NPM package.json with scripts (cross-platform)
Make
Makefile for Unix/Mac
Shell
Shell script for automation
Compose
Docker Compose for containers
Curl
Direct cURL commands (no mrapids needed)
All
Generate all formats
Trait Implementations§
Source§impl Clone for TestSetupFormat
impl Clone for TestSetupFormat
Source§fn clone(&self) -> TestSetupFormat
fn clone(&self) -> TestSetupFormat
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 TestSetupFormat
impl Debug for TestSetupFormat
impl Eq for TestSetupFormat
Source§impl PartialEq for TestSetupFormat
impl PartialEq for TestSetupFormat
impl StructuralPartialEq for TestSetupFormat
Source§impl ValueEnum for TestSetupFormat
impl ValueEnum for TestSetupFormat
Auto Trait Implementations§
impl Freeze for TestSetupFormat
impl RefUnwindSafe for TestSetupFormat
impl Send for TestSetupFormat
impl Sync for TestSetupFormat
impl Unpin for TestSetupFormat
impl UnsafeUnpin for TestSetupFormat
impl UnwindSafe for TestSetupFormat
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.