pub trait Op_ {
    type T;

    fn foreach<'a>(&'a mut self, continuation: impl FnMut(Self::T) + 'a);
    fn get_type_name() -> &'static str;
}

Required Associated Types

Required Methods

Implementors