Trait IntoAnyPtr

Source
pub trait IntoAnyPtr: Any + Sized {
    // Provided method
    fn into_any_ptr(self) -> CAnyRustPtr { ... }
}

Provided 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§

Source§

impl<T: IntoAnyPtr> IntoAnyPtr for Option<T>

Implementors§