pub struct TestTarget {
pub name: String,
pub path: PathBuf,
pub test_type: TestType,
pub tags: Vec<String>,
}Expand description
Legacy struct for file-level test targets (kept for compatibility)
Fields§
§name: String§path: PathBuf§test_type: TestTypeTrait Implementations§
Source§impl Clone for TestTarget
impl Clone for TestTarget
Source§fn clone(&self) -> TestTarget
fn clone(&self) -> TestTarget
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 TestTarget
impl Debug for TestTarget
Source§impl<'de> Deserialize<'de> for TestTarget
impl<'de> Deserialize<'de> for TestTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TestTarget
impl RefUnwindSafe for TestTarget
impl Send for TestTarget
impl Sync for TestTarget
impl Unpin for TestTarget
impl UnsafeUnpin for TestTarget
impl UnwindSafe for TestTarget
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