pub trait ExactSizeFallibleLender: FallibleLender {
// Provided methods
fn len(&self) -> usize { ... }
fn is_empty(&self) -> bool { ... }
}Expand description
The FallibleLender version of core::iter::ExactSizeIterator.
Provided Methods§
Sourcefn len(&self) -> usize
fn len(&self) -> usize
Returns the exact remaining length of the lender.
See ExactSizeLender::len.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.