makepad_micro_proc_macro::macro_lib

Trait IdentifyLast

Source
pub trait IdentifyLast: Iterator + Sized {
    // Required method
    fn identify_last(self) -> Iter<Self> ;
}

Required Methods§

Source

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§

Source§

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