pub trait Borrow<'a, T>where
T: for<'b> BorrowHkt<'b>,{
// Required method
fn borrow<'b>(&'a self) -> Borrowed<'b, T>
where 'a: 'b;
}
Expand description
Flexible borrowing trait.
This is similar to std::borrow::Borrow but allows non-reference types to be used.