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