pub trait SmartPointer: Pointer {
// Required method
fn new(t: Self::Target) -> Self;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Implementors§
impl<T, Tag, P> SmartPointer for Irc<T, Tag, P>where
T: IrcItem<Tag, P>,
P: SmartPointer<Target = T>,
Available on crate feature
irc only.