Struct FastSingleIntBinning

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

Source

pub const fn new_inclusive(start: u8, end_inclusive: u8) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> u8

Get left border, inclusive

Source

pub const fn right(&self) -> u8

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<u8>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: i8, end_inclusive: i8) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> i8

Get left border, inclusive

Source

pub const fn right(&self) -> i8

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<i8>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: u16, end_inclusive: u16) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> u16

Get left border, inclusive

Source

pub const fn right(&self) -> u16

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<u16>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: i16, end_inclusive: i16) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> i16

Get left border, inclusive

Source

pub const fn right(&self) -> i16

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<i16>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: u32, end_inclusive: u32) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> u32

Get left border, inclusive

Source

pub const fn right(&self) -> u32

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<u32>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: i32, end_inclusive: i32) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> i32

Get left border, inclusive

Source

pub const fn right(&self) -> i32

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<i32>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: u64, end_inclusive: u64) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> u64

Get left border, inclusive

Source

pub const fn right(&self) -> u64

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<u64>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: i64, end_inclusive: i64) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> i64

Get left border, inclusive

Source

pub const fn right(&self) -> i64

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<i64>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: u128, end_inclusive: u128) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> u128

Get left border, inclusive

Source

pub const fn right(&self) -> u128

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<u128>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: i128, end_inclusive: i128) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> i128

Get left border, inclusive

Source

pub const fn right(&self) -> i128

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<i128>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: usize, end_inclusive: usize) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> usize

Get left border, inclusive

Source

pub const fn right(&self) -> usize

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<usize>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source

pub const fn new_inclusive(start: isize, end_inclusive: isize) -> Self

§Create a new Binning
  • both borders are inclusive
  • each bin has width 1
§Panics
  • if start is smaller than end_inclusive
Source

pub const fn left(&self) -> isize

Get left border, inclusive

Source

pub const fn right(&self) -> isize

Get right border, inclusive

Source

pub const fn range_inclusive(&self) -> RangeInclusive<isize>

§Returns the range covered by the bins as a RangeInclusive<T>
Source

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]);
Source

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>

Source

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>

Source§

fn clone(&self) -> FastSingleIntBinning<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 FastSingleIntBinning<T>

Source§

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

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

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

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<T: Ord> Ord for FastSingleIntBinning<T>

Source§

fn cmp(&self, other: &FastSingleIntBinning<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 FastSingleIntBinning<T>

Source§

fn eq(&self, other: &FastSingleIntBinning<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 FastSingleIntBinning<T>

Source§

fn partial_cmp(&self, other: &FastSingleIntBinning<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<T> Serialize for FastSingleIntBinning<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<T: Copy> Copy for FastSingleIntBinning<T>

Source§

impl<T: Eq> Eq for FastSingleIntBinning<T>

Source§

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> 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)
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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

impl<T> Pointable for T

§

const ALIGN: usize

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Source§

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