pub trait BackendIter {
// Required method
fn next(&mut self) -> Option<&Backend>;
}Expand description
An iterator to find the suitable backend
Similar to Iterator but allow self referencing.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".