pub struct BenchmarkTask {
pub id: String,
pub mode: BenchmarkMode,
pub description: Option<String>,
pub frontier: Option<String>,
pub gold: Option<String>,
pub thresholds: BenchmarkThresholds,
pub workflow: Option<WorkflowExpectations>,
}Fields§
§id: String§mode: BenchmarkMode§description: Option<String>§frontier: Option<String>§gold: Option<String>§thresholds: BenchmarkThresholds§workflow: Option<WorkflowExpectations>Trait Implementations§
Source§impl Clone for BenchmarkTask
impl Clone for BenchmarkTask
Source§fn clone(&self) -> BenchmarkTask
fn clone(&self) -> BenchmarkTask
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 BenchmarkTask
impl Debug for BenchmarkTask
Source§impl<'de> Deserialize<'de> for BenchmarkTask
impl<'de> Deserialize<'de> for BenchmarkTask
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 BenchmarkTask
impl RefUnwindSafe for BenchmarkTask
impl Send for BenchmarkTask
impl Sync for BenchmarkTask
impl Unpin for BenchmarkTask
impl UnsafeUnpin for BenchmarkTask
impl UnwindSafe for BenchmarkTask
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