Enum hdrhistogram::errors::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 Debug for AdditionErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for AdditionError[src]
impl Eq for AdditionErrorimpl PartialEq for AdditionError[src]
impl PartialEq for AdditionErrorfn eq(&self, other: &AdditionError) -> bool[src]
fn eq(&self, other: &AdditionError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Clone for AdditionError[src]
impl Clone for AdditionErrorfn clone(&self) -> AdditionError[src]
fn clone(&self) -> AdditionErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for AdditionError[src]
impl Copy for AdditionErrorAuto Trait Implementations
impl Send for AdditionError
impl Send for AdditionErrorimpl Sync for AdditionError
impl Sync for AdditionError