pub struct TraceDeviceEntry {
pub checksum: String,
pub singlethread: bool,
pub skip: bool,
pub replay_args: Vec<String>,
}Fields§
§checksum: String§singlethread: boolDon’t run any other traces in parallel with this one.
skip: boolSkip this trace on this device entirely.
replay_args: Vec<String>Extra arguments appended to the replay command for this trace on this device. Concatenated after any per-trace replay_args.
Trait Implementations§
Source§impl Debug for TraceDeviceEntry
impl Debug for TraceDeviceEntry
Source§impl<'de> Deserialize<'de> for TraceDeviceEntry
impl<'de> Deserialize<'de> for TraceDeviceEntry
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 TraceDeviceEntry
impl RefUnwindSafe for TraceDeviceEntry
impl Send for TraceDeviceEntry
impl Sync for TraceDeviceEntry
impl Unpin for TraceDeviceEntry
impl UnsafeUnpin for TraceDeviceEntry
impl UnwindSafe for TraceDeviceEntry
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