pub enum RegisteredTestSuiteProperty {
Sequential {
name: String,
crate_name: String,
module_path: String,
},
Tag {
name: String,
crate_name: String,
module_path: String,
tag: String,
},
}Variants§
Implementations§
Source§impl RegisteredTestSuiteProperty
impl RegisteredTestSuiteProperty
pub fn crate_name(&self) -> &String
pub fn module_path(&self) -> &String
pub fn name(&self) -> &String
pub fn crate_and_module(&self) -> String
Trait Implementations§
Source§impl Clone for RegisteredTestSuiteProperty
impl Clone for RegisteredTestSuiteProperty
Source§fn clone(&self) -> RegisteredTestSuiteProperty
fn clone(&self) -> RegisteredTestSuiteProperty
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 RegisteredTestSuiteProperty
impl RefUnwindSafe for RegisteredTestSuiteProperty
impl Send for RegisteredTestSuiteProperty
impl Sync for RegisteredTestSuiteProperty
impl Unpin for RegisteredTestSuiteProperty
impl UnwindSafe for RegisteredTestSuiteProperty
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