Struct ndhistogram::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,)>

§

type Coordinate = <X as Axis>::Coordinate

The type representing a location on this axis.
§

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)>

§

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

The type representing a location on this axis.
§

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)>

§

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

The type representing a location on this axis.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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)>

§

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.
§

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<'de, T> Deserialize<'de> for AxesTuple<T>where T: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. 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) -> Selfwhere Self: Sized,

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

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

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd> PartialOrd<AxesTuple<T>> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

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

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. 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> StructuralEq for AxesTuple<T>

source§

impl<T> StructuralPartialEq for AxesTuple<T>

Auto Trait Implementations§

§

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,