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", so this trait is not object safe.
Implementations on Foreign Types§
Implementors§
impl<T: IrcItem<Tag>, Tag> SmartPointer for Irc<T, Tag>
Available on crate feature
irc only.