pub enum PercentileError {
EmptyInput,
InvalidPercentile,
}Variants§
Trait Implementations§
Source§impl Clone for PercentileError
impl Clone for PercentileError
Source§fn clone(&self) -> PercentileError
fn clone(&self) -> PercentileError
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§impl Debug for PercentileError
impl Debug for PercentileError
Source§impl PartialEq for PercentileError
impl PartialEq for PercentileError
Source§fn eq(&self, other: &PercentileError) -> bool
fn eq(&self, other: &PercentileError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PercentileError
impl StructuralPartialEq for PercentileError
Auto Trait Implementations§
impl Freeze for PercentileError
impl RefUnwindSafe for PercentileError
impl Send for PercentileError
impl Sync for PercentileError
impl Unpin for PercentileError
impl UnsafeUnpin for PercentileError
impl UnwindSafe for PercentileError
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