pub struct BootstrapCi {
pub point: f64,
pub lower: f64,
pub upper: f64,
pub confidence: f64,
pub resamples: usize,
pub seed: u64,
pub resampling_unit: &'static str,
pub n: usize,
}Expand description
A bootstrap percentile interval, with everything needed to re-derive it.
Fields§
§point: f64The statistic on the observed sample.
lower: f64Lower percentile bound.
upper: f64Upper percentile bound.
confidence: f64Nominal coverage, e.g. 0.95.
resamples: usizeResamples drawn.
seed: u64The seed. In the receipt, per §4.4.4.
resampling_unit: &'static strWhole requests, always. Recorded so the unit of resampling is on the page.
n: usizeObservations resampled.
Trait Implementations§
Source§impl Clone for BootstrapCi
impl Clone for BootstrapCi
Source§impl Debug for BootstrapCi
impl Debug for BootstrapCi
Source§impl Deserialize<'static> for BootstrapCi
impl Deserialize<'static> for BootstrapCi
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
Source§impl PartialEq for BootstrapCi
impl PartialEq for BootstrapCi
Source§impl Serialize for BootstrapCi
impl Serialize for BootstrapCi
impl StructuralPartialEq for BootstrapCi
Auto Trait Implementations§
impl Freeze for BootstrapCi
impl RefUnwindSafe for BootstrapCi
impl Send for BootstrapCi
impl Sync for BootstrapCi
impl Unpin for BootstrapCi
impl UnsafeUnpin for BootstrapCi
impl UnwindSafe for BootstrapCi
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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