pub trait BorrowHkt<'a> { type T; }
Trait for resolving a concrete type from a given lifetime 'a, where 'a is the lifetime of the value being borrowed.
'a
The borrowed type.