pub trait FallibleLending<'lend, __ImplBound: ImplBound = Ref<'lend, Self>> {
type Lend: 'lend;
}Expand description
A trait for dealing with the ‘items’ of fallible lending iterators.
Must be defined for any type that implements FallibleLender.
It implicitly restricts the lifetime 'lend used in FallibleLending<'lend> to be where Self: 'lend.