pub trait Keys {
// Required methods
fn next(&mut self, lookup: &KeyLookup) -> Result<usize, Traversal>;
fn finalize(&mut self) -> Result<(), Traversal>;
// Provided method
fn chain<U: IntoKeys>(self, other: U) -> Chain<Self, U::IntoKeys>
where Self: Sized { ... }
}
Expand description
Capability to yield and look up Key
s