pub struct BootstrapInterval {
pub lower: f64,
pub upper: f64,
pub successful_resamples: usize,
pub skipped_resamples: usize,
}Expand description
Percentile interval for one bootstrap statistic.
Fields§
§lower: f64§upper: f64§successful_resamples: usize§skipped_resamples: usizeTrait Implementations§
Source§impl Clone for BootstrapInterval
impl Clone for BootstrapInterval
Source§impl Debug for BootstrapInterval
impl Debug for BootstrapInterval
Source§impl<'de> Deserialize<'de> for BootstrapInterval
impl<'de> Deserialize<'de> for BootstrapInterval
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
Source§impl PartialEq for BootstrapInterval
impl PartialEq for BootstrapInterval
Source§impl Serialize for BootstrapInterval
impl Serialize for BootstrapInterval
impl StructuralPartialEq for BootstrapInterval
Auto Trait Implementations§
impl Freeze for BootstrapInterval
impl RefUnwindSafe for BootstrapInterval
impl Send for BootstrapInterval
impl Sync for BootstrapInterval
impl Unpin for BootstrapInterval
impl UnsafeUnpin for BootstrapInterval
impl UnwindSafe for BootstrapInterval
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