pub struct TestCaseFixture {
pub name: &'static str,
pub status: TestCaseFixtureStatus,
/* private fields */
}
Fields§
§name: &'static str
§status: TestCaseFixtureStatus
Implementations§
Source§impl TestCaseFixture
impl TestCaseFixture
pub fn new(name: &'static str, status: TestCaseFixtureStatus) -> Self
pub fn with_property(self, property: TestCaseFixtureProperty) -> Self
pub fn has_property(&self, property: TestCaseFixtureProperty) -> bool
Trait Implementations§
Source§impl Clone for TestCaseFixture
impl Clone for TestCaseFixture
Source§fn clone(&self) -> TestCaseFixture
fn clone(&self) -> TestCaseFixture
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 Debug for TestCaseFixture
impl Debug for TestCaseFixture
Source§impl PartialEq<(&str, FilterMatch)> for TestCaseFixture
impl PartialEq<(&str, FilterMatch)> for TestCaseFixture
Auto Trait Implementations§
impl Freeze for TestCaseFixture
impl RefUnwindSafe for TestCaseFixture
impl Send for TestCaseFixture
impl Sync for TestCaseFixture
impl Unpin for TestCaseFixture
impl UnwindSafe for TestCaseFixture
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