pub trait TextMap<V> {
// Required method
fn merge_only_longest<I: IntoIterator<Item = (Segment<usize>, V)>>(
&mut self,
other: I,
);
}
Required Methods§
fn merge_only_longest<I: IntoIterator<Item = (Segment<usize>, V)>>( &mut self, other: I, )
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.