Trait TextMap

Source
pub trait TextMap<V> {
    // Required method
    fn merge_only_longest<I: IntoIterator<Item = (Segment<usize>, V)>>(
        &mut self,
        other: I,
    );
}

Required Methods§

Source

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.

Implementors§

Source§

impl<V: Clone + Eq> TextMap<V> for SegmentMap<usize, V>