pub struct ClassificationConfig {
pub test_features: Vec<String>,
pub test_paths: Vec<String>,
pub ignore_paths: Vec<String>,
}Expand description
Classification configuration
Fields§
§test_features: Vec<String>Features that indicate test code
test_paths: Vec<String>Paths that contain test code
ignore_paths: Vec<String>Paths to ignore completely
Trait Implementations§
Source§impl Clone for ClassificationConfig
impl Clone for ClassificationConfig
Source§fn clone(&self) -> ClassificationConfig
fn clone(&self) -> ClassificationConfig
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 moreSource§impl Debug for ClassificationConfig
impl Debug for ClassificationConfig
Source§impl Default for ClassificationConfig
impl Default for ClassificationConfig
Source§impl<'de> Deserialize<'de> for ClassificationConfig
impl<'de> Deserialize<'de> for ClassificationConfig
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 ClassificationConfig
impl RefUnwindSafe for ClassificationConfig
impl Send for ClassificationConfig
impl Sync for ClassificationConfig
impl Unpin for ClassificationConfig
impl UnwindSafe for ClassificationConfig
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