pub trait WeakBoolIterExtend: Sized {
// Required methods
fn weak_true(self) -> WeakBoolIter<true, Self> ⓘ;
fn weak_false(self) -> WeakBoolIter<false, Self> ⓘ;
fn weak_all(self) -> bool;
fn weak_any(self) -> bool;
}
Required Methods§
Sourcefn weak_true(self) -> WeakBoolIter<true, Self> ⓘ
fn weak_true(self) -> WeakBoolIter<true, Self> ⓘ
like iter.map(WeakTrue::weak_true)
Sourcefn weak_false(self) -> WeakBoolIter<false, Self> ⓘ
fn weak_false(self) -> WeakBoolIter<false, Self> ⓘ
like iter.map(WeakTrue::weak_false)
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.