pub enum ApproximationUnavailable {
NoSamples,
ValueOutOfRange,
ArithmeticOverflow,
}Expand description
Why binary64 approximate statistics could not be represented honestly.
Variants§
NoSamples
No samples were requested or the tensor has no logical elements.
ValueOutOfRange
At least one exact scalar lies outside the finite binary64 analysis domain.
ArithmeticOverflow
Finite binary64 values had a range or variance too wide for binary64 arithmetic.
Trait Implementations§
Source§fn clone(&self) -> ApproximationUnavailable
fn clone(&self) -> ApproximationUnavailable
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§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§fn eq(&self, other: &ApproximationUnavailable) -> bool
fn eq(&self, other: &ApproximationUnavailable) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
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