pub enum BenchArtifactLevelInput {
Performance,
Diagnostic,
}Expand description
The artifact level a Bench case requests from the measurement runtime.
Omission resolves to diagnostic, which retains the full raw
request/response export; performance keeps only normalized per-request
records and the summary export ([[RFC-0004:C-BENCH-ARTIFACT-LEVEL]]).
Variants§
Trait Implementations§
Source§impl Clone for BenchArtifactLevelInput
impl Clone for BenchArtifactLevelInput
Source§fn clone(&self) -> BenchArtifactLevelInput
fn clone(&self) -> BenchArtifactLevelInput
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 moreimpl Copy for BenchArtifactLevelInput
Source§impl Debug for BenchArtifactLevelInput
impl Debug for BenchArtifactLevelInput
Source§impl Default for BenchArtifactLevelInput
impl Default for BenchArtifactLevelInput
Source§fn default() -> BenchArtifactLevelInput
fn default() -> BenchArtifactLevelInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BenchArtifactLevelInput
impl<'de> Deserialize<'de> for BenchArtifactLevelInput
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
impl Eq for BenchArtifactLevelInput
Source§impl JsonSchema for BenchArtifactLevelInput
impl JsonSchema for BenchArtifactLevelInput
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 BenchArtifactLevelInput
impl PartialEq for BenchArtifactLevelInput
Source§impl Serialize for BenchArtifactLevelInput
impl Serialize for BenchArtifactLevelInput
impl StructuralPartialEq for BenchArtifactLevelInput
Auto Trait Implementations§
impl Freeze for BenchArtifactLevelInput
impl RefUnwindSafe for BenchArtifactLevelInput
impl Send for BenchArtifactLevelInput
impl Sync for BenchArtifactLevelInput
impl Unpin for BenchArtifactLevelInput
impl UnsafeUnpin for BenchArtifactLevelInput
impl UnwindSafe for BenchArtifactLevelInput
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