Enum hdrsample::AdditionError
[−]
[src]
pub enum AdditionError {
OtherAddendValueExceedsRange,
ResizeFailedUsizeTypeTooSmall,
}Errors that can occur when adding another histogram.
Variants
OtherAddendValueExceedsRangeThe other histogram includes values that do not fit in this histogram's range. Only possible when auto resize is disabled.
ResizeFailedUsizeTypeTooSmallThe other histogram includes values that would map to indexes in this histogram that are
not expressible for usize. Configure this histogram to use fewer significant digits. Only
possible when resize is enabled.
Trait Implementations
impl Debug for AdditionError[src]
impl Eq for AdditionError[src]
impl PartialEq for AdditionError[src]
fn eq(&self, __arg_0: &AdditionError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Clone for AdditionError[src]
fn clone(&self) -> AdditionError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more