Enum rand_distr::TriangularError
source · [−]pub enum TriangularError {
RangeTooSmall,
ModeRange,
}
Expand description
Error type returned from Triangular::new
.
Variants
RangeTooSmall
max < min
or min
or max
is NaN.
ModeRange
mode < min
or mode > max
or mode
is NaN.
Trait Implementations
sourceimpl Clone for TriangularError
impl Clone for TriangularError
sourcefn clone(&self) -> TriangularError
fn clone(&self) -> TriangularError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TriangularError
impl Debug for TriangularError
sourceimpl Display for TriangularError
impl Display for TriangularError
sourceimpl PartialEq<TriangularError> for TriangularError
impl PartialEq<TriangularError> for TriangularError
impl Copy for TriangularError
impl Eq for TriangularError
impl StructuralEq for TriangularError
impl StructuralPartialEq for TriangularError
Auto Trait Implementations
impl RefUnwindSafe for TriangularError
impl Send for TriangularError
impl Sync for TriangularError
impl Unpin for TriangularError
impl UnwindSafe for TriangularError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more