pub struct UserHarnessConfig {
pub mode: HarnessMode,
pub transport: HarnessTransport,
pub transcript: HarnessTranscriptMode,
pub auto_infer: bool,
pub threading: UserHarnessThreadingConfig,
pub harnesses: BTreeMap<String, UserHarnessOverride>,
}Fields§
§mode: HarnessMode§transport: HarnessTransport§transcript: HarnessTranscriptMode§auto_infer: bool§threading: UserHarnessThreadingConfig§harnesses: BTreeMap<String, UserHarnessOverride>Trait Implementations§
Source§impl Clone for UserHarnessConfig
impl Clone for UserHarnessConfig
Source§fn clone(&self) -> UserHarnessConfig
fn clone(&self) -> UserHarnessConfig
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 UserHarnessConfig
impl Debug for UserHarnessConfig
Source§impl Default for UserHarnessConfig
impl Default for UserHarnessConfig
Source§impl<'de> Deserialize<'de> for UserHarnessConfig
impl<'de> Deserialize<'de> for UserHarnessConfig
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 UserHarnessConfig
impl RefUnwindSafe for UserHarnessConfig
impl Send for UserHarnessConfig
impl Sync for UserHarnessConfig
impl Unpin for UserHarnessConfig
impl UnsafeUnpin for UserHarnessConfig
impl UnwindSafe for UserHarnessConfig
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