Trait IdentifyLast

pub trait IdentifyLast: Sized + Iterator {
    // Required method
    fn identify_last(self) -> Iter<Self> ;
}
Available on crate features __ecma and __utils only.
Expand description

Copied from https://users.rust-lang.org/t/iterator-need-to-identify-the-last-element/8836/3

Required Methods§

fn identify_last(self) -> Iter<Self>

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.

Implementors§

§

impl<It> IdentifyLast for It
where It: Iterator,