borrow_framework

Trait BorrowHkt

Source
pub trait BorrowHkt<'a> {
    type T;
}
Expand description

Trait for resolving a concrete type from a given lifetime 'a, where 'a is the lifetime of the value being borrowed.

Required Associated Types§

Source

type T

The borrowed type.

Implementors§

Source§

impl<'a, T> BorrowHkt<'a> for BorrowCow<T>
where T: Cowable,

Source§

type T = Cow<'a, T>