cert

Struct RelUncertainty

Source
pub struct RelUncertainty<N> { /* private fields */ }
Expand description

A relative uncertainty.

Relative uncertainties are characterized by a mean value and a coefficient of variation. The latter is the ratio of the standard deviation to the mean value.

Trait Implementations§

Source§

impl<N: Float, U: Uncertainty<Float = N>> Add<U> for RelUncertainty<N>

Source§

type Output = RelUncertainty<N>

The resulting type after applying the + operator.
Source§

fn add(self, other: U) -> Self

Performs the + operation. Read more
Source§

impl<N: Clone> Clone for RelUncertainty<N>

Source§

fn clone(&self) -> RelUncertainty<N>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<N: Debug> Debug for RelUncertainty<N>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<N: Default> Default for RelUncertainty<N>

Source§

fn default() -> RelUncertainty<N>

Returns the “default value” for a type. Read more
Source§

impl<N: Float + Zero + Display> Display for RelUncertainty<N>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<N: Float, U: Uncertainty<Float = N>> Div<U> for RelUncertainty<N>

Source§

type Output = RelUncertainty<N>

The resulting type after applying the / operator.
Source§

fn div(self, other: U) -> Self

Performs the / operation. Read more
Source§

impl<N: Float> From<AbsUncertainty<N>> for RelUncertainty<N>

Source§

fn from(val: AbsUncertainty<N>) -> RelUncertainty<N>

Converts to this type from the input type.
Source§

impl<N: Float + Zero> From<RelUncertainty<N>> for AbsUncertainty<N>

Source§

fn from(val: RelUncertainty<N>) -> AbsUncertainty<N>

Converts to this type from the input type.
Source§

impl From<f64> for RelUncertainty<f64>

Source§

fn from(val: f64) -> RelUncertainty<f64>

Converts to this type from the input type.
Source§

impl<N: Float, U: Uncertainty<Float = N>> Mul<U> for RelUncertainty<N>

Source§

type Output = RelUncertainty<N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: U) -> Self

Performs the * operation. Read more
Source§

impl<N: PartialEq> PartialEq for RelUncertainty<N>

Source§

fn eq(&self, other: &RelUncertainty<N>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<N: Float, U: Uncertainty<Float = N>> Sub<U> for RelUncertainty<N>

Source§

type Output = RelUncertainty<N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: U) -> Self

Performs the - operation. Read more
Source§

impl<N: Float + Zero> Uncertainty for RelUncertainty<N>

Source§

type Float = N

The underlying float type for the uncertainty
Source§

fn new(mean: N, coefficient_of_variation: N) -> RelUncertainty<N>

Source§

fn mean(&self) -> N

Returns the mean of the value
Source§

fn standard_deviation(&self) -> N

The standard deviation of the value
Source§

fn coefficient_of_variation(&self) -> N

The coefficient of variation is the ratio of the standard deviation and the mean. Read more
Source§

fn uncertainty(&self) -> N

The actual uncertainty of the concrete type. This will depend on whether the implementor represent a relative or absolute uncertainty.
Source§

fn is_certain(&self) -> bool

Returns true if the uncertainty is zero. Read more
Source§

fn powi(&self, n: i32) -> Self

Raise the value to the nth power.
Source§

impl<N: Float + Zero> Zero for RelUncertainty<N>

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<N: Copy> Copy for RelUncertainty<N>

Source§

impl<N> StructuralPartialEq for RelUncertainty<N>

Auto Trait Implementations§

§

impl<N> Freeze for RelUncertainty<N>
where N: Freeze,

§

impl<N> RefUnwindSafe for RelUncertainty<N>
where N: RefUnwindSafe,

§

impl<N> Send for RelUncertainty<N>
where N: Send,

§

impl<N> Sync for RelUncertainty<N>
where N: Sync,

§

impl<N> Unpin for RelUncertainty<N>
where N: Unpin,

§

impl<N> UnwindSafe for RelUncertainty<N>
where N: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.