pub struct BenchNativeInvocation {
pub purpose: String,
pub command: Vec<String>,
pub exit_code: Option<i32>,
pub interrupted: bool,
pub timed_out: bool,
}Expand description
One bounded native post-processing command and its terminal outcome.
Fields§
§purpose: String§command: Vec<String>§exit_code: Option<i32>§interrupted: bool§timed_out: boolTrait Implementations§
Source§impl Clone for BenchNativeInvocation
impl Clone for BenchNativeInvocation
Source§fn clone(&self) -> BenchNativeInvocation
fn clone(&self) -> BenchNativeInvocation
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 BenchNativeInvocation
impl Debug for BenchNativeInvocation
Source§impl<'de> Deserialize<'de> for BenchNativeInvocation
impl<'de> Deserialize<'de> for BenchNativeInvocation
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
Source§impl JsonSchema for BenchNativeInvocation
impl JsonSchema for BenchNativeInvocation
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for BenchNativeInvocation
impl PartialEq for BenchNativeInvocation
Source§impl Serialize for BenchNativeInvocation
impl Serialize for BenchNativeInvocation
impl StructuralPartialEq for BenchNativeInvocation
Auto Trait Implementations§
impl Freeze for BenchNativeInvocation
impl RefUnwindSafe for BenchNativeInvocation
impl Send for BenchNativeInvocation
impl Sync for BenchNativeInvocation
impl Unpin for BenchNativeInvocation
impl UnsafeUnpin for BenchNativeInvocation
impl UnwindSafe for BenchNativeInvocation
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