ndhistogram

Struct AxesTuple

Source
pub struct AxesTuple<T> { /* private fields */ }
Expand description

Container for a set of Axis that implements Axes.

Implementations§

Source§

impl<T> AxesTuple<T>

Source

pub fn as_tuple(&self) -> &T

Get the set of container Axis as a tuple

Trait Implementations§

Source§

impl<X: Axis> Axis for AxesTuple<(X,)>

Source§

type Coordinate = <X as Axis>::Coordinate

The type representing a location on this axis.
Source§

type BinInterval = <X as Axis>::BinInterval

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

impl<X: Axis, Y: Axis> Axis for AxesTuple<(X, Y)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis> Axis for AxesTuple<(X, Y, Z)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis> Axis for AxesTuple<(X, Y, Z, T)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis> Axis for AxesTuple<(X, Y, Z, T, D4)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate, <D16 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval, <D16 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate, <D16 as Axis>::Coordinate, <D17 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval, <D16 as Axis>::BinInterval, <D17 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate, <D16 as Axis>::Coordinate, <D17 as Axis>::Coordinate, <D18 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval, <D16 as Axis>::BinInterval, <D17 as Axis>::BinInterval, <D18 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate, <D16 as Axis>::Coordinate, <D17 as Axis>::Coordinate, <D18 as Axis>::Coordinate, <D19 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval, <D16 as Axis>::BinInterval, <D17 as Axis>::BinInterval, <D18 as Axis>::BinInterval, <D19 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis, D20: Axis> Axis for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20)>

Source§

type Coordinate = (<X as Axis>::Coordinate, <Y as Axis>::Coordinate, <Z as Axis>::Coordinate, <T as Axis>::Coordinate, <D4 as Axis>::Coordinate, <D5 as Axis>::Coordinate, <D6 as Axis>::Coordinate, <D7 as Axis>::Coordinate, <D8 as Axis>::Coordinate, <D9 as Axis>::Coordinate, <D10 as Axis>::Coordinate, <D11 as Axis>::Coordinate, <D12 as Axis>::Coordinate, <D13 as Axis>::Coordinate, <D14 as Axis>::Coordinate, <D15 as Axis>::Coordinate, <D16 as Axis>::Coordinate, <D17 as Axis>::Coordinate, <D18 as Axis>::Coordinate, <D19 as Axis>::Coordinate, <D20 as Axis>::Coordinate)

The type representing a location on this axis.
Source§

type BinInterval = (<X as Axis>::BinInterval, <Y as Axis>::BinInterval, <Z as Axis>::BinInterval, <T as Axis>::BinInterval, <D4 as Axis>::BinInterval, <D5 as Axis>::BinInterval, <D6 as Axis>::BinInterval, <D7 as Axis>::BinInterval, <D8 as Axis>::BinInterval, <D9 as Axis>::BinInterval, <D10 as Axis>::BinInterval, <D11 as Axis>::BinInterval, <D12 as Axis>::BinInterval, <D13 as Axis>::BinInterval, <D14 as Axis>::BinInterval, <D15 as Axis>::BinInterval, <D16 as Axis>::BinInterval, <D17 as Axis>::BinInterval, <D18 as Axis>::BinInterval, <D19 as Axis>::BinInterval, <D20 as Axis>::BinInterval)

The type of an interval representing the set of Coordinates that correspond to a histogram bin
Source§

fn index(&self, coordinate: &Self::Coordinate) -> Option<usize>

Map from coordinate to bin number. Returns an option as not all valid coordinates are necessarily contained within a bin.
Source§

fn num_bins(&self) -> usize

The number of bins in this axis, including underflow and overflow.
Source§

fn num_dim(&self) -> usize

The number of dimensions that this object corresponds to. For most Axis types this will simply be 1. However, Axes (i.e. a set of Axis) also implement Axis and should return the number of Axis that it contains.
Source§

fn bin(&self, index: usize) -> Option<Self::BinInterval>

Map from bin number to axis to the interval covering the range of coordinates that this bin contains. Returns an option in case an index >= Axis::num_bins is given.
Source§

fn indices(&self) -> Box<dyn Iterator<Item = usize>>

An iterator over bin numbers
Source§

fn iter(&self) -> Box<dyn Iterator<Item = (usize, Self::BinInterval)> + '_>

An iterator over bin numbers and bin intervals
Source§

fn bins(&self) -> Box<dyn Iterator<Item = Self::BinInterval> + '_>

An iterator over bin intervals.
Source§

impl<T: Clone> Clone for AxesTuple<T>

Source§

fn clone(&self) -> AxesTuple<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for AxesTuple<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default> Default for AxesTuple<T>

Source§

fn default() -> AxesTuple<T>

Returns the “default value” for a type. Read more
Source§

impl<X: Axis> From<(X,)> for AxesTuple<(X,)>

Source§

fn from(item: (X,)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis> From<(X, Y)> for AxesTuple<(X, Y)>

Source§

fn from(item: (X, Y)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis> From<(X, Y, Z)> for AxesTuple<(X, Y, Z)>

Source§

fn from(item: (X, Y, Z)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis> From<(X, Y, Z, T)> for AxesTuple<(X, Y, Z, T)>

Source§

fn from(item: (X, Y, Z, T)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis> From<(X, Y, Z, T, D4)> for AxesTuple<(X, Y, Z, T, D4)>

Source§

fn from(item: (X, Y, Z, T, D4)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis> From<(X, Y, Z, T, D4, D5)> for AxesTuple<(X, Y, Z, T, D4, D5)>

Source§

fn from(item: (X, Y, Z, T, D4, D5)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis> From<(X, Y, Z, T, D4, D5, D6)> for AxesTuple<(X, Y, Z, T, D4, D5, D6)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis> From<(X, Y, Z, T, D4, D5, D6, D7)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13)>

Source§

fn from(item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13)) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14)>

Source§

fn from( item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14), ) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15)>

Source§

fn from( item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15), ) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16)>

Source§

fn from( item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16), ) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17)>

Source§

fn from( item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17), ) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18)>

Source§

fn from( item: (X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18), ) -> Self

Converts to this type from the input type.
Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis, D20: Axis> From<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20)> for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20)>

Source§

impl<T: Hash> Hash for AxesTuple<T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: Ord> Ord for AxesTuple<T>

Source§

fn cmp(&self, other: &AxesTuple<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T: PartialEq> PartialEq for AxesTuple<T>

Source§

fn eq(&self, other: &AxesTuple<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd> PartialOrd for AxesTuple<T>

Source§

fn partial_cmp(&self, other: &AxesTuple<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<X: Axis> Axes for AxesTuple<(X,)>

Source§

impl<X: Axis, Y: Axis> Axes for AxesTuple<(X, Y)>

Source§

impl<X: Axis, Y: Axis, Z: Axis> Axes for AxesTuple<(X, Y, Z)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis> Axes for AxesTuple<(X, Y, Z, T)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis> Axes for AxesTuple<(X, Y, Z, T, D4)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19)>

Source§

impl<X: Axis, Y: Axis, Z: Axis, T: Axis, D4: Axis, D5: Axis, D6: Axis, D7: Axis, D8: Axis, D9: Axis, D10: Axis, D11: Axis, D12: Axis, D13: Axis, D14: Axis, D15: Axis, D16: Axis, D17: Axis, D18: Axis, D19: Axis, D20: Axis> Axes for AxesTuple<(X, Y, Z, T, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20)>

Source§

impl<T: Eq> Eq for AxesTuple<T>

Source§

impl<T> StructuralPartialEq for AxesTuple<T>

Auto Trait Implementations§

§

impl<T> Freeze for AxesTuple<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for AxesTuple<T>
where T: RefUnwindSafe,

§

impl<T> Send for AxesTuple<T>
where T: Send,

§

impl<T> Sync for AxesTuple<T>
where T: Sync,

§

impl<T> Unpin for AxesTuple<T>
where T: Unpin,

§

impl<T> UnwindSafe for AxesTuple<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.