pub trait FromGlibPtrArrayContainerAsVec<P: Ptr, PP: Ptr>: FromGlibContainerAsVec<P, PP>where
Self: Sized,{
// Required methods
unsafe fn from_glib_none_as_vec(ptr: PP) -> Vec<Self>;
unsafe fn from_glib_container_as_vec(ptr: PP) -> Vec<Self>;
unsafe fn from_glib_full_as_vec(ptr: PP) -> Vec<Self>;
}
Required Methods§
unsafe fn from_glib_none_as_vec(ptr: PP) -> Vec<Self>
unsafe fn from_glib_container_as_vec(ptr: PP) -> Vec<Self>
unsafe fn from_glib_full_as_vec(ptr: PP) -> Vec<Self>
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.