pub trait SplitOffsetsAtwhere
Self: Sized,{
// Required methods
fn split_offsets_with_intersection_at(
self,
mid: usize,
) -> (Self, Self, usize);
fn split_offsets_at(self, mid: usize) -> (Self, Self);
}Required Methods§
fn split_offsets_with_intersection_at(self, mid: usize) -> (Self, Self, usize)
fn split_offsets_at(self, mid: usize) -> (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.