aboutsummaryrefslogtreecommitdiff
path: root/src/ptr.rs
blob: 62445fde46572a015d01491ed88ec90b35dc8fb2 (plain)
1
2
3
4
5
6
#![allow(clippy::module_name_repetitions)]
use std::rc::Rc;

pub type TransientPtr<Interface> = Box<Interface>;

pub type FactoryPtr<FactoryInterface> = Rc<FactoryInterface>;