pub enum BoundType {
Probabilistic {
confidence: f64,
},
Deterministic,
Expected,
Concentration {
deviation_parameter: f64,
},
}Expand description
Types of theoretical bounds BoundType
Variants§
Probabilistic
Probabilistic bound with confidence level
Deterministic
Deterministic worst-case bound
Expected
Expected error bound
Concentration
Concentration inequality bound
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BoundType
impl RefUnwindSafe for BoundType
impl Send for BoundType
impl Sync for BoundType
impl Unpin for BoundType
impl UnwindSafe for BoundType
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
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