From 3fbf26181f1b4b9e594debb103fd347bd93240ea Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 27 Jul 2022 15:17:33 +0200 Subject: refactor!: rename InterfacePtr to TransientPtr BREAKING CHANGE: InterfacePtr has been renamed to TransientPtr --- src/ptr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ptr.rs') 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 = Box; +pub type TransientPtr = Box; pub type FactoryPtr = Rc; -- cgit v1.2.3-18-g5258