pub struct TestOptions<'a> {
pub path: PathBuf,
pub debug: bool,
pub debug_graph: bool,
pub include: Option<Regex>,
pub exclude: Option<Regex>,
pub file_name: Option<String>,
pub update: bool,
pub open_log: bool,
pub languages: BTreeMap<&'a str, &'a Language>,
pub color: bool,
pub show_fields: bool,
pub overview_only: bool,
}Fields§
§path: PathBuf§debug: bool§debug_graph: bool§include: Option<Regex>§exclude: Option<Regex>§file_name: Option<String>§update: bool§open_log: bool§languages: BTreeMap<&'a str, &'a Language>§color: bool§show_fields: bool§overview_only: boolAuto Trait Implementations§
impl<'a> Freeze for TestOptions<'a>
impl<'a> RefUnwindSafe for TestOptions<'a>
impl<'a> Send for TestOptions<'a>
impl<'a> Sync for TestOptions<'a>
impl<'a> Unpin for TestOptions<'a>
impl<'a> UnwindSafe for TestOptions<'a>
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