Enum libtest_mimic::FormatSetting
source · [−]pub enum FormatSetting {
Pretty,
Terse,
Json,
}
Expand description
Possible values for the --format
option.
Variants
Pretty
One line per test. Output for humans. (default)
Terse
One character per test. Usefull for test suites with many tests.
Json
Output as JSON.
Trait Implementations
sourceimpl Clone for FormatSetting
impl Clone for FormatSetting
sourcefn clone(&self) -> FormatSetting
fn clone(&self) -> FormatSetting
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FormatSetting
impl Debug for FormatSetting
sourceimpl Default for FormatSetting
impl Default for FormatSetting
sourceimpl FromStr for FormatSetting
impl FromStr for FormatSetting
sourceimpl PartialEq<FormatSetting> for FormatSetting
impl PartialEq<FormatSetting> for FormatSetting
impl Copy for FormatSetting
impl Eq for FormatSetting
impl StructuralEq for FormatSetting
impl StructuralPartialEq for FormatSetting
Auto Trait Implementations
impl RefUnwindSafe for FormatSetting
impl Send for FormatSetting
impl Sync for FormatSetting
impl Unpin for FormatSetting
impl UnwindSafe for FormatSetting
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.