pub struct DoctorReport {
pub version: String,
pub target: PathBuf,
pub config_path: PathBuf,
pub config_found: bool,
pub fail_on: String,
pub ignore_tests: bool,
pub enabled_features: EnabledFeatures,
pub detected_adapters: Vec<String>,
pub available_adapters: Vec<String>,
pub runtime_wrap_available: bool,
}Fields§
§version: String§target: PathBuf§config_path: PathBuf§config_found: bool§fail_on: String§ignore_tests: bool§enabled_features: EnabledFeatures§detected_adapters: Vec<String>§available_adapters: Vec<String>§runtime_wrap_available: boolTrait Implementations§
Source§impl Clone for DoctorReport
impl Clone for DoctorReport
Source§fn clone(&self) -> DoctorReport
fn clone(&self) -> DoctorReport
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 DoctorReport
impl Debug for DoctorReport
Auto Trait Implementations§
impl Freeze for DoctorReport
impl RefUnwindSafe for DoctorReport
impl Send for DoctorReport
impl Sync for DoctorReport
impl Unpin for DoctorReport
impl UnsafeUnpin for DoctorReport
impl UnwindSafe for DoctorReport
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