pub struct DimensionResult {
pub dimension: SimulationDimension,
pub passed: bool,
pub confidence: f64,
pub findings: Vec<String>,
pub samples: Vec<Sample>,
}Fields§
§dimension: SimulationDimension§passed: bool§confidence: f64§findings: Vec<String>§samples: Vec<Sample>Trait Implementations§
Source§impl Clone for DimensionResult
impl Clone for DimensionResult
Source§fn clone(&self) -> DimensionResult
fn clone(&self) -> DimensionResult
Returns a duplicate of the value. Read more
1.0.0 · 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 DimensionResult
impl Debug for DimensionResult
Source§impl<'de> Deserialize<'de> for DimensionResult
impl<'de> Deserialize<'de> for DimensionResult
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 DimensionResult
impl RefUnwindSafe for DimensionResult
impl Send for DimensionResult
impl Sync for DimensionResult
impl Unpin for DimensionResult
impl UnsafeUnpin for DimensionResult
impl UnwindSafe for DimensionResult
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