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.
pub trait BackendIter {
// Required method
fn next(&mut self) -> Option<&Backend>;
}
An iterator to find the suitable backend
Similar to Iterator but allow self referencing.