Trait lifelink::Ctor

source ·
pub trait Ctor {
    type Ty<'a>;
}
Expand description

Trait for type constructors that take one single lifetime parameter. See also Cov for Deref on Guard.

Required Associated Types§

source

type Ty<'a>

Implementors§

source§

impl<T: 'static> Ctor for RefCtor<T>

§

type Ty<'a> = &'a T