Trait Insert
cl_traits
pub trait Insert { type Input; type Output; fn insert(&mut self, input: Self::Input) -> Self::Output; }
See insert for more information.
insert
type Input
Input
type Output
Output
fn insert(&mut self, input: Self::Input) -> Self::Output
Inserts an Input element.