pub trait FromGlibContainerAsVec<T, P: Ptr>where
Self: Sized,{
// Required methods
unsafe fn from_glib_none_num_as_vec(ptr: P, num: usize) -> Vec<Self>;
unsafe fn from_glib_container_num_as_vec(ptr: P, num: usize) -> Vec<Self>;
unsafe fn from_glib_full_num_as_vec(ptr: P, num: usize) -> Vec<Self>;
}
Required Methods§
unsafe fn from_glib_none_num_as_vec(ptr: P, num: usize) -> Vec<Self>
unsafe fn from_glib_container_num_as_vec(ptr: P, num: usize) -> Vec<Self>
unsafe fn from_glib_full_num_as_vec(ptr: P, num: usize) -> 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.