pub trait ArrayFromIter<T>: Sized {
    // Required methods
    fn arr_from_iter<I>(iter: I) -> Self
       where I: IntoIterator<Item = T>;
    fn try_arr_from_iter<E, I>(iter: I) -> Result<Self, E>
       where I: IntoIterator<Item = Result<T, E>>;

    // Provided methods
    fn arr_from_iter_trusted<I>(iter: I) -> Self
       where I: IntoIterator<Item = T>,
             <I as IntoIterator>::IntoIter: TrustedLen { ... }
    fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<Self, E>
       where I: IntoIterator<Item = Result<T, E>>,
             <I as IntoIterator>::IntoIter: TrustedLen { ... }
}

Required Methods§

source

fn arr_from_iter<I>(iter: I) -> Selfwhere I: IntoIterator<Item = T>,

source

fn try_arr_from_iter<E, I>(iter: I) -> Result<Self, E>where I: IntoIterator<Item = Result<T, E>>,

Provided Methods§

source

fn arr_from_iter_trusted<I>(iter: I) -> Selfwhere I: IntoIterator<Item = T>, <I as IntoIterator>::IntoIter: TrustedLen,

source

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<Self, E>where I: IntoIterator<Item = Result<T, E>>, <I as IntoIterator>::IntoIter: TrustedLen,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ArrayFromIter<Option<bool>> for BooleanArray

source§

fn arr_from_iter<I>(iter: I) -> BooleanArraywhere I: IntoIterator<Item = Option<bool>>,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<BooleanArray, E>where I: IntoIterator<Item = Result<Option<bool>, E>>,

source§

impl ArrayFromIter<bool> for BooleanArray

source§

fn arr_from_iter<I>(iter: I) -> BooleanArraywhere I: IntoIterator<Item = bool>,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<BooleanArray, E>where I: IntoIterator<Item = Result<bool, E>>,

source§

impl<T> ArrayFromIter<Option<T>> for BinaryArray<i64>where T: IntoBytes,

source§

fn arr_from_iter<I>(iter: I) -> BinaryArray<i64>where I: IntoIterator<Item = Option<T>>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> BinaryArray<i64>where I: IntoIterator<Item = Option<T>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<BinaryArray<i64>, E>where I: IntoIterator<Item = Result<Option<T>, E>>,

source§

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<BinaryArray<i64>, E>where I: IntoIterator<Item = Result<Option<T>, E>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> ArrayFromIter<Option<T>> for PrimitiveArray<T>where T: NumericNative,

source§

fn arr_from_iter<I>(iter: I) -> PrimitiveArray<T>where I: IntoIterator<Item = Option<T>>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> PrimitiveArray<T>where I: IntoIterator<Item = Option<T>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<PrimitiveArray<T>, E>where I: IntoIterator<Item = Result<Option<T>, E>>,

source§

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<PrimitiveArray<T>, E>where I: IntoIterator<Item = Result<Option<T>, E>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> ArrayFromIter<Option<T>> for Utf8Array<i64>where T: StrIntoBytes,

source§

fn arr_from_iter<I>(iter: I) -> Utf8Array<i64>where I: IntoIterator<Item = Option<T>>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> Utf8Array<i64>where I: IntoIterator<Item = Option<T>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<Utf8Array<i64>, E>where I: IntoIterator<Item = Result<Option<T>, E>>,

source§

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<Utf8Array<i64>, E>where I: IntoIterator<Item = Result<Option<T>, E>>,

source§

impl<T> ArrayFromIter<T> for BinaryArray<i64>where T: IntoBytes,

source§

fn arr_from_iter<I>(iter: I) -> BinaryArray<i64>where I: IntoIterator<Item = T>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> BinaryArray<i64>where I: IntoIterator<Item = T>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<BinaryArray<i64>, E>where I: IntoIterator<Item = Result<T, E>>,

source§

impl<T> ArrayFromIter<T> for PrimitiveArray<T>where T: NumericNative,

source§

fn arr_from_iter<I>(iter: I) -> PrimitiveArray<T>where I: IntoIterator<Item = T>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> PrimitiveArray<T>where I: IntoIterator<Item = T>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<PrimitiveArray<T>, E>where I: IntoIterator<Item = Result<T, E>>,

source§

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<PrimitiveArray<T>, E>where I: IntoIterator<Item = Result<T, E>>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> ArrayFromIter<T> for Utf8Array<i64>where T: StrIntoBytes,

source§

fn arr_from_iter<I>(iter: I) -> Utf8Array<i64>where I: IntoIterator<Item = T>,

source§

fn arr_from_iter_trusted<I>(iter: I) -> Utf8Array<i64>where I: IntoIterator<Item = T>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

fn try_arr_from_iter<E, I>(iter: I) -> Result<Utf8Array<i64>, E>where I: IntoIterator<Item = Result<T, E>>,

source§

fn try_arr_from_iter_trusted<E, I>(iter: I) -> Result<Utf8Array<i64>, E>where I: IntoIterator<Item = Result<T, E>>,

Implementors§