[][src]Enum pineappl::grid::GridMergeError

pub enum GridMergeError {
    DifferentOrders,
    DifferentLumi,
    DifferentBins(MergeBinError),
}

Error returned when merging two grids fails.

Variants

DifferentOrders

Returned when trying to merge two Grid objects with different bin limits and different orders.

DifferentLumi

Returned when trying to merge two Grid Objects with different bin limits and different luminosity functions.

DifferentBins(MergeBinError)

Returned when trying to merge two Grid objects with incompatible bin limits.

Trait Implementations

impl Debug for GridMergeError[src]

impl Display for GridMergeError[src]

impl Error for GridMergeError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.