pub struct BenchmarkResults {
pub throughput: Option<ThroughputResult>,
pub storage: Option<StorageResult>,
pub consensus: Option<ConsensusResult>,
pub overall_score: f32,
}Fields§
§throughput: Option<ThroughputResult>§storage: Option<StorageResult>§consensus: Option<ConsensusResult>§overall_score: f32Trait Implementations§
Source§impl Clone for BenchmarkResults
impl Clone for BenchmarkResults
Source§fn clone(&self) -> BenchmarkResults
fn clone(&self) -> BenchmarkResults
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 BenchmarkResults
impl Debug for BenchmarkResults
Source§impl Default for BenchmarkResults
impl Default for BenchmarkResults
Source§fn default() -> BenchmarkResults
fn default() -> BenchmarkResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BenchmarkResults
impl<'de> Deserialize<'de> for BenchmarkResults
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 BenchmarkResults
impl RefUnwindSafe for BenchmarkResults
impl Send for BenchmarkResults
impl Sync for BenchmarkResults
impl Unpin for BenchmarkResults
impl UnsafeUnpin for BenchmarkResults
impl UnwindSafe for BenchmarkResults
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