pub struct SubsetResult {
pub probability: f64,
pub levels_used: usize,
pub n_samples_total: usize,
pub method: String,
}Expand description
Result of a subset simulation run.
Fields§
§probability: f64Estimated failure probability P(g(X) > threshold).
levels_used: usizeIntermediate levels actually used.
n_samples_total: usizeTotal samples consumed.
method: StringEstimation method.
Trait Implementations§
Source§impl Clone for SubsetResult
impl Clone for SubsetResult
Source§fn clone(&self) -> SubsetResult
fn clone(&self) -> SubsetResult
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 SubsetResult
impl Debug for SubsetResult
Source§impl<'de> Deserialize<'de> for SubsetResult
impl<'de> Deserialize<'de> for SubsetResult
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 SubsetResult
impl RefUnwindSafe for SubsetResult
impl Send for SubsetResult
impl Sync for SubsetResult
impl Unpin for SubsetResult
impl UnsafeUnpin for SubsetResult
impl UnwindSafe for SubsetResult
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