pub struct BenchListEntry {
pub id: &'static str,
pub display: &'static str,
pub eta_seconds: u64,
pub dataset_bytes: u64,
pub description: &'static str,
}Expand description
Sidecar shape used by mnem bench list so the JSON the CLI
prints is self-describing.
Fields§
§id: &'static strStable identifier.
display: &'static strDisplay name.
eta_seconds: u64Approximate ETA (seconds) for the full run.
dataset_bytes: u64Approximate dataset size in bytes.
description: &'static strDescription.
Trait Implementations§
Source§impl Deserialize<'static> for BenchListEntry
impl Deserialize<'static> for BenchListEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BenchListEntry
impl RefUnwindSafe for BenchListEntry
impl Send for BenchListEntry
impl Sync for BenchListEntry
impl Unpin for BenchListEntry
impl UnsafeUnpin for BenchListEntry
impl UnwindSafe for BenchListEntry
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more