pub trait OptionContainer<T> {
// Required methods
fn push(&mut self, val: T);
fn get<'a>(&'a self) -> impl Iterator<Item = &'a T>
where T: 'a;
}
Required Methods§
fn push(&mut self, val: T)
fn get<'a>(&'a self) -> impl Iterator<Item = &'a T>where
T: 'a,
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.