pub trait WithLifetime<'a> {
    type Out;
}

Required Associated Types§

Implementors§

source§

impl<'a, T: 'a + ?Sized> WithLifetime<'a> for RefLifetime<T>

§

type Out = &'a T