pub struct FastSingleIntBinning<T> { /* private fields */ }
Expand description
§Generic binning meant for any integer type
The bin width of this binning is always 1, so we can optimize it a bit. There are type aliases for all the common integer types, e.g. FastBinningU8
Implementations§
Source§impl FastSingleIntBinning<u8>
impl FastSingleIntBinning<u8>
Sourcepub const fn new_inclusive(start: u8, end_inclusive: u8) -> Self
pub const fn new_inclusive(start: u8, end_inclusive: u8) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<u8>
pub const fn range_inclusive(&self) -> RangeInclusive<u8>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = u8>
pub fn native_bin_iter(&self) -> impl Iterator<Item = u8>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningU8;
let binning = FastBinningU8::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <u8 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <u8 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<u8>
impl FastSingleIntBinning<u8>
Sourcepub fn get_bin_index_native<V: Borrow<u8>>(
&self,
val: V,
) -> Option<<u8 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<u8>>( &self, val: V, ) -> Option<<u8 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<i8>
impl FastSingleIntBinning<i8>
Sourcepub const fn new_inclusive(start: i8, end_inclusive: i8) -> Self
pub const fn new_inclusive(start: i8, end_inclusive: i8) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<i8>
pub const fn range_inclusive(&self) -> RangeInclusive<i8>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = i8>
pub fn native_bin_iter(&self) -> impl Iterator<Item = i8>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningI8;
let binning = FastBinningI8::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <i8 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <i8 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<i8>
impl FastSingleIntBinning<i8>
Sourcepub fn get_bin_index_native<V: Borrow<i8>>(
&self,
val: V,
) -> Option<<i8 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<i8>>( &self, val: V, ) -> Option<<i8 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<u16>
impl FastSingleIntBinning<u16>
Sourcepub const fn new_inclusive(start: u16, end_inclusive: u16) -> Self
pub const fn new_inclusive(start: u16, end_inclusive: u16) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<u16>
pub const fn range_inclusive(&self) -> RangeInclusive<u16>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = u16>
pub fn native_bin_iter(&self) -> impl Iterator<Item = u16>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningU16;
let binning = FastBinningU16::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <u16 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <u16 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<u16>
impl FastSingleIntBinning<u16>
Sourcepub fn get_bin_index_native<V: Borrow<u16>>(
&self,
val: V,
) -> Option<<u16 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<u16>>( &self, val: V, ) -> Option<<u16 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<i16>
impl FastSingleIntBinning<i16>
Sourcepub const fn new_inclusive(start: i16, end_inclusive: i16) -> Self
pub const fn new_inclusive(start: i16, end_inclusive: i16) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<i16>
pub const fn range_inclusive(&self) -> RangeInclusive<i16>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = i16>
pub fn native_bin_iter(&self) -> impl Iterator<Item = i16>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningI16;
let binning = FastBinningI16::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <i16 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <i16 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<i16>
impl FastSingleIntBinning<i16>
Sourcepub fn get_bin_index_native<V: Borrow<i16>>(
&self,
val: V,
) -> Option<<i16 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<i16>>( &self, val: V, ) -> Option<<i16 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<u32>
impl FastSingleIntBinning<u32>
Sourcepub const fn new_inclusive(start: u32, end_inclusive: u32) -> Self
pub const fn new_inclusive(start: u32, end_inclusive: u32) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<u32>
pub const fn range_inclusive(&self) -> RangeInclusive<u32>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = u32>
pub fn native_bin_iter(&self) -> impl Iterator<Item = u32>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningU32;
let binning = FastBinningU32::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <u32 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <u32 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<u32>
impl FastSingleIntBinning<u32>
Sourcepub fn get_bin_index_native<V: Borrow<u32>>(
&self,
val: V,
) -> Option<<u32 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<u32>>( &self, val: V, ) -> Option<<u32 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<i32>
impl FastSingleIntBinning<i32>
Sourcepub const fn new_inclusive(start: i32, end_inclusive: i32) -> Self
pub const fn new_inclusive(start: i32, end_inclusive: i32) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<i32>
pub const fn range_inclusive(&self) -> RangeInclusive<i32>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = i32>
pub fn native_bin_iter(&self) -> impl Iterator<Item = i32>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningI32;
let binning = FastBinningI32::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <i32 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <i32 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<i32>
impl FastSingleIntBinning<i32>
Sourcepub fn get_bin_index_native<V: Borrow<i32>>(
&self,
val: V,
) -> Option<<i32 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<i32>>( &self, val: V, ) -> Option<<i32 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<u64>
impl FastSingleIntBinning<u64>
Sourcepub const fn new_inclusive(start: u64, end_inclusive: u64) -> Self
pub const fn new_inclusive(start: u64, end_inclusive: u64) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<u64>
pub const fn range_inclusive(&self) -> RangeInclusive<u64>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = u64>
pub fn native_bin_iter(&self) -> impl Iterator<Item = u64>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningU64;
let binning = FastBinningU64::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <u64 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <u64 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<u64>
impl FastSingleIntBinning<u64>
Sourcepub fn get_bin_index_native<V: Borrow<u64>>(
&self,
val: V,
) -> Option<<u64 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<u64>>( &self, val: V, ) -> Option<<u64 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<i64>
impl FastSingleIntBinning<i64>
Sourcepub const fn new_inclusive(start: i64, end_inclusive: i64) -> Self
pub const fn new_inclusive(start: i64, end_inclusive: i64) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<i64>
pub const fn range_inclusive(&self) -> RangeInclusive<i64>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = i64>
pub fn native_bin_iter(&self) -> impl Iterator<Item = i64>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningI64;
let binning = FastBinningI64::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <i64 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <i64 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<i64>
impl FastSingleIntBinning<i64>
Sourcepub fn get_bin_index_native<V: Borrow<i64>>(
&self,
val: V,
) -> Option<<i64 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<i64>>( &self, val: V, ) -> Option<<i64 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<u128>
impl FastSingleIntBinning<u128>
Sourcepub const fn new_inclusive(start: u128, end_inclusive: u128) -> Self
pub const fn new_inclusive(start: u128, end_inclusive: u128) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<u128>
pub const fn range_inclusive(&self) -> RangeInclusive<u128>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = u128>
pub fn native_bin_iter(&self) -> impl Iterator<Item = u128>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningU128;
let binning = FastBinningU128::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <u128 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <u128 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<u128>
impl FastSingleIntBinning<u128>
Sourcepub fn get_bin_index_native<V: Borrow<u128>>(
&self,
val: V,
) -> Option<<u128 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<u128>>( &self, val: V, ) -> Option<<u128 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<i128>
impl FastSingleIntBinning<i128>
Sourcepub const fn new_inclusive(start: i128, end_inclusive: i128) -> Self
pub const fn new_inclusive(start: i128, end_inclusive: i128) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<i128>
pub const fn range_inclusive(&self) -> RangeInclusive<i128>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = i128>
pub fn native_bin_iter(&self) -> impl Iterator<Item = i128>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningI128;
let binning = FastBinningI128::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <i128 as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <i128 as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<i128>
impl FastSingleIntBinning<i128>
Sourcepub fn get_bin_index_native<V: Borrow<i128>>(
&self,
val: V,
) -> Option<<i128 as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<i128>>( &self, val: V, ) -> Option<<i128 as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<usize>
impl FastSingleIntBinning<usize>
Sourcepub const fn new_inclusive(start: usize, end_inclusive: usize) -> Self
pub const fn new_inclusive(start: usize, end_inclusive: usize) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<usize>
pub const fn range_inclusive(&self) -> RangeInclusive<usize>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = usize>
pub fn native_bin_iter(&self) -> impl Iterator<Item = usize>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningUSIZE;
let binning = FastBinningUSIZE::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <usize as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <usize as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<usize>
impl FastSingleIntBinning<usize>
Sourcepub fn get_bin_index_native<V: Borrow<usize>>(
&self,
val: V,
) -> Option<<usize as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<usize>>( &self, val: V, ) -> Option<<usize as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Source§impl FastSingleIntBinning<isize>
impl FastSingleIntBinning<isize>
Sourcepub const fn new_inclusive(start: isize, end_inclusive: isize) -> Self
pub const fn new_inclusive(start: isize, end_inclusive: isize) -> Self
Sourcepub const fn range_inclusive(&self) -> RangeInclusive<isize>
pub const fn range_inclusive(&self) -> RangeInclusive<isize>
§Returns the range covered by the bins as a RangeInclusive<T>
Sourcepub fn native_bin_iter(&self) -> impl Iterator<Item = isize>
pub fn native_bin_iter(&self) -> impl Iterator<Item = isize>
§Iterator over all the bins
Since the bins have width 1, a bin can be defined by its corresponding value which we can iterate over.
§Example
use sampling::histogram::FastBinningISIZE;
let binning = FastBinningISIZE::new_inclusive(2,5);
let vec: Vec<_> = binning.native_bin_iter().collect();
assert_eq!(&vec, &[2, 3, 4, 5]);
Sourcepub fn bins_m1(&self) -> <isize as HasUnsignedVersion>::Unsigned
pub fn bins_m1(&self) -> <isize as HasUnsignedVersion>::Unsigned
§The amount of bins -1
- minus 1 because if the bins are going over the entire range of the type, then I cannot represent the number of bins as this type
§Example
If we look at an u8 and the range from 0 to 255, then this is 256 bins, which cannot be represented as u8. To combat this, I return bins - 1. This works, because we always have at least 1 bin
Source§impl FastSingleIntBinning<isize>
impl FastSingleIntBinning<isize>
Sourcepub fn get_bin_index_native<V: Borrow<isize>>(
&self,
val: V,
) -> Option<<isize as HasUnsignedVersion>::Unsigned>
pub fn get_bin_index_native<V: Borrow<isize>>( &self, val: V, ) -> Option<<isize as HasUnsignedVersion>::Unsigned>
§Get the respective bin index
- Similar to get_bin_index, but without the cast to
usize
. This means that large types are not at a risk of overflow here
Trait Implementations§
Source§impl<T: Clone> Clone for FastSingleIntBinning<T>
impl<T: Clone> Clone for FastSingleIntBinning<T>
Source§fn clone(&self) -> FastSingleIntBinning<T>
fn clone(&self) -> FastSingleIntBinning<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T: Debug> Debug for FastSingleIntBinning<T>
impl<T: Debug> Debug for FastSingleIntBinning<T>
Source§impl<'de, T> Deserialize<'de> for FastSingleIntBinning<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for FastSingleIntBinning<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl<T: Ord> Ord for FastSingleIntBinning<T>
impl<T: Ord> Ord for FastSingleIntBinning<T>
Source§fn cmp(&self, other: &FastSingleIntBinning<T>) -> Ordering
fn cmp(&self, other: &FastSingleIntBinning<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<T: PartialEq> PartialEq for FastSingleIntBinning<T>
impl<T: PartialEq> PartialEq for FastSingleIntBinning<T>
Source§impl<T: PartialOrd> PartialOrd for FastSingleIntBinning<T>
impl<T: PartialOrd> PartialOrd for FastSingleIntBinning<T>
Source§impl<T> Serialize for FastSingleIntBinning<T>where
T: Serialize,
impl<T> Serialize for FastSingleIntBinning<T>where
T: Serialize,
impl<T: Copy> Copy for FastSingleIntBinning<T>
impl<T: Eq> Eq for FastSingleIntBinning<T>
impl<T> StructuralPartialEq for FastSingleIntBinning<T>
Auto Trait Implementations§
impl<T> Freeze for FastSingleIntBinning<T>where
T: Freeze,
impl<T> RefUnwindSafe for FastSingleIntBinning<T>where
T: RefUnwindSafe,
impl<T> Send for FastSingleIntBinning<T>where
T: Send,
impl<T> Sync for FastSingleIntBinning<T>where
T: Sync,
impl<T> Unpin for FastSingleIntBinning<T>where
T: Unpin,
impl<T> UnwindSafe for FastSingleIntBinning<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more