pub struct BenchPopulationInput {
pub path: PathBuf,
pub sha256: String,
pub entries: u32,
pub tpot_applicable: bool,
}Expand description
One frozen dataset population consumed sequentially by every Bench case.
Fields§
§path: PathBuf§sha256: String§entries: u32§tpot_applicable: boolTrait Implementations§
Source§impl Clone for BenchPopulationInput
impl Clone for BenchPopulationInput
Source§fn clone(&self) -> BenchPopulationInput
fn clone(&self) -> BenchPopulationInput
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 BenchPopulationInput
impl Debug for BenchPopulationInput
Source§impl<'de> Deserialize<'de> for BenchPopulationInput
impl<'de> Deserialize<'de> for BenchPopulationInput
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 BenchPopulationInput
Source§impl JsonSchema for BenchPopulationInput
impl JsonSchema for BenchPopulationInput
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 BenchPopulationInput
impl PartialEq for BenchPopulationInput
Source§impl Serialize for BenchPopulationInput
impl Serialize for BenchPopulationInput
impl StructuralPartialEq for BenchPopulationInput
Auto Trait Implementations§
impl Freeze for BenchPopulationInput
impl RefUnwindSafe for BenchPopulationInput
impl Send for BenchPopulationInput
impl Sync for BenchPopulationInput
impl Unpin for BenchPopulationInput
impl UnsafeUnpin for BenchPopulationInput
impl UnwindSafe for BenchPopulationInput
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