Struct unarray::ArrayFromIter

source ·
pub struct ArrayFromIter<T, const N: usize>(pub Option<[T; N]>);
Expand description

A wrapper type to collect an Iterator into an array

let iter = vec![1, 2, 3].into_iter();
let ArrayFromIter(array) = iter.collect();

assert_eq!(array, Some([1, 2, 3]));

Since iterators don’t carry compile-time information about their length (even core::iter::ExactSizeIterator only provides this at runtime), collecting may fail if the iterator doesn’t yield exactly N elements:

use unarray::*;
let too_many = vec![1, 2, 3, 4].into_iter();
let ArrayFromIter::<i32, 3>(option) = too_many.collect();
assert!(option.is_none());

let too_few = vec![1, 2].into_iter();
let ArrayFromIter::<i32, 3>(option) = too_few.collect();
assert!(option.is_none());

Tuple Fields§

§0: Option<[T; N]>

Trait Implementations§

source§

impl<T, const N: usize> FromIterator<T> for ArrayFromIter<T, N>

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for ArrayFromIter<T, N>
where T: Freeze,

§

impl<T, const N: usize> RefUnwindSafe for ArrayFromIter<T, N>
where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for ArrayFromIter<T, N>
where T: Send,

§

impl<T, const N: usize> Sync for ArrayFromIter<T, N>
where T: Sync,

§

impl<T, const N: usize> Unpin for ArrayFromIter<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for ArrayFromIter<T, N>
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> 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, 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.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.