pub struct DeviceEntry {
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 DeviceEntry
impl Debug for DeviceEntry
Source§impl<'de> Deserialize<'de> for DeviceEntry
impl<'de> Deserialize<'de> for DeviceEntry
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 DeviceEntry
impl RefUnwindSafe for DeviceEntry
impl Send for DeviceEntry
impl Sync for DeviceEntry
impl Unpin for DeviceEntry
impl UnsafeUnpin for DeviceEntry
impl UnwindSafe for DeviceEntry
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