aboutsummaryrefslogtreecommitdiff
path: root/src/ptr.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-07-27 15:17:33 +0200
committerHampusM <hampus@hampusmat.com>2022-07-31 12:15:18 +0200
commit3fbf26181f1b4b9e594debb103fd347bd93240ea (patch)
tree63cf13edb5ea21a6cbbcfcf474611820382a5048 /src/ptr.rs
parent224e59112e65ce6cbafe5a87dba031dd11e936a8 (diff)
refactor!: rename InterfacePtr to TransientPtr
BREAKING CHANGE: InterfacePtr has been renamed to TransientPtr
Diffstat (limited to 'src/ptr.rs')
-rw-r--r--src/ptr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ptr.rs b/src/ptr.rs
index 414d086..62445fd 100644
--- a/src/ptr.rs
+++ b/src/ptr.rs
@@ -1,6 +1,6 @@
#![allow(clippy::module_name_repetitions)]
use std::rc::Rc;
-pub type InterfacePtr<Interface> = Box<Interface>;
+pub type TransientPtr<Interface> = Box<Interface>;
pub type FactoryPtr<FactoryInterface> = Rc<FactoryInterface>;