pub trait SplitEveryImpl: Sized {
// Provided method
fn split_every_n_times(self, pat: Self, n: usize) -> SplitEvery<Self, Self> ⓘ { ... }
}
Provided Methods§
fn split_every_n_times(self, pat: Self, n: usize) -> SplitEvery<Self, 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.