Trait rocket::mtls::oid::asn1_rs::nom::lib::std::iter::TrustedLen

source ·
pub unsafe trait TrustedLen: Iterator { }
🔬This is a nightly-only experimental API. (trusted_len)
Available on crate feature mtls only.
Expand description

An iterator that reports an accurate length using size_hint.

The iterator reports a size hint where it is either exact (lower bound is equal to upper bound), or the upper bound is None. The upper bound must only be None if the actual iterator length is larger than usize::MAX. In that case, the lower bound must be usize::MAX, resulting in an Iterator::size_hint() of (usize::MAX, None).

The iterator must produce exactly the number of elements it reported or diverge before reaching the end.

§When shouldn’t an adapter be TrustedLen?

If an adapter makes an iterator shorter by a given amount, then it’s usually incorrect for that adapter to implement TrustedLen. The inner iterator might return more than usize::MAX items, but there’s no way to know what k elements less than that will be, since the size_hint from the inner iterator has already saturated and lost that information.

This is why Skip<I> isn’t TrustedLen, even when I implements TrustedLen.

§Safety

This trait must only be implemented when the contract is upheld. Consumers of this trait must inspect Iterator::size_hint()’s upper bound.

Implementors§

source§

impl TrustedLen for Bytes<'_>

source§

impl TrustedLen for ToLowercase

source§

impl TrustedLen for ToUppercase

source§

impl<'a, I, T> TrustedLen for Cloned<I>
where T: 'a + Clone, I: TrustedLen<Item = &'a T>,

1.36.0 · source§

impl<'a, I, T> TrustedLen for Copied<I>
where T: 'a + Copy, I: TrustedLen<Item = &'a T>,

source§

impl<A> TrustedLen for Repeat<A>
where A: Clone,

source§

impl<A> TrustedLen for RepeatN<A>
where A: Clone,

source§

impl<A> TrustedLen for Range<A>
where A: TrustedStep,

source§

impl<A> TrustedLen for RangeFrom<A>
where A: TrustedStep,

source§

impl<A> TrustedLen for RangeInclusive<A>
where A: TrustedStep,

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::option::IntoIter<A>

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::option::Iter<'_, A>

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::option::IterMut<'_, A>

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::result::IntoIter<A>

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::result::Iter<'_, A>

source§

impl<A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::result::IterMut<'_, A>

source§

impl<A, B> TrustedLen for Chain<A, B>
where A: TrustedLen, B: TrustedLen<Item = <A as Iterator>::Item>,

source§

impl<A, B> TrustedLen for Zip<A, B>
where A: TrustedLen, B: TrustedLen,

1.43.0 · source§

impl<A, F> TrustedLen for OnceWith<F>
where F: FnOnce() -> A,

source§

impl<A, F> TrustedLen for RepeatWith<F>
where F: FnMut() -> A,

source§

impl<B, I, F> TrustedLen for Map<I, F>
where I: TrustedLen, F: FnMut(<I as Iterator>::Item) -> B,

source§

impl<I> TrustedLen for &mut I
where I: TrustedLen + ?Sized,

source§

impl<I> TrustedLen for Enumerate<I>
where I: TrustedLen,

source§

impl<I> TrustedLen for Flatten<I>
where I: Iterator, <I as Iterator>::Item: IntoIterator, FlattenCompat<I, <<I as Iterator>::Item as IntoIterator>::IntoIter>: TrustedLen,

source§

impl<I> TrustedLen for Fuse<I>
where I: TrustedLen,

source§

impl<I> TrustedLen for Peekable<I>
where I: TrustedLen,

source§

impl<I> TrustedLen for Rev<I>

source§

impl<I> TrustedLen for Skip<I>
where I: Iterator + TrustedRandomAccess,

source§

impl<I> TrustedLen for StepBy<I>
where I: Iterator + TrustedRandomAccess,

source§

impl<I> TrustedLen for Take<I>
where I: TrustedLen,

source§

impl<I, U, F> TrustedLen for FlatMap<I, U, F>
where I: Iterator, U: IntoIterator, F: FnMut(<I as Iterator>::Item) -> U, FlattenCompat<Map<I, F>, <U as IntoIterator>::IntoIter>: TrustedLen,

source§

impl<T> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::collections::vec_deque::Iter<'_, T>

source§

impl<T> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::collections::vec_deque::IterMut<'_, T>

source§

impl<T> TrustedLen for Empty<T>

source§

impl<T> TrustedLen for Once<T>

source§

impl<T> TrustedLen for Chunks<'_, T>

source§

impl<T> TrustedLen for ChunksExact<'_, T>

source§

impl<T> TrustedLen for ChunksExactMut<'_, T>

source§

impl<T> TrustedLen for ChunksMut<'_, T>

source§

impl<T> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::slice::Iter<'_, T>

source§

impl<T> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::slice::IterMut<'_, T>

source§

impl<T> TrustedLen for RChunks<'_, T>

source§

impl<T> TrustedLen for RChunksExact<'_, T>

source§

impl<T> TrustedLen for RChunksExactMut<'_, T>

source§

impl<T> TrustedLen for RChunksMut<'_, T>

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<T, A> TrustedLen for DrainSorted<'_, T, A>
where T: Ord, A: Allocator,

source§

impl<T, A> TrustedLen for IntoIterSorted<T, A>
where T: Ord, A: Allocator,

source§

impl<T, A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::collections::vec_deque::IntoIter<T, A>
where A: Allocator,

source§

impl<T, A> TrustedLen for Drain<'_, T, A>
where A: Allocator,

source§

impl<T, A> TrustedLen for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::IntoIter<T, A>
where A: Allocator,

source§

impl<T, const N: usize> TrustedLen for ArrayChunks<'_, T, N>

source§

impl<T, const N: usize> TrustedLen for ArrayChunksMut<'_, T, N>

1.40.0 · source§

impl<T, const N: usize> TrustedLen for core::array::iter::IntoIter<T, N>