pub trait TreeIterTools: Iterator + Sized {
// Provided methods
fn absolute<B>(self) -> Absolute<Self, B> ⓘ { ... }
fn skip_below<P, B>(self, predicate: P) -> SkipBelow<Self, P, B> ⓘ
where P: FnMut(&Self::Item) -> bool,
Self: Sized { ... }
}
Provided Methods§
fn absolute<B>(self) -> Absolute<Self, B> ⓘ
fn skip_below<P, B>(self, predicate: P) -> SkipBelow<Self, P, B> ⓘ
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.