[][src]Trait glib::translate::FromGlibContainer

pub trait FromGlibContainer<T, P: Ptr>: Sized {
    unsafe fn from_glib_none_num(ptr: P, num: usize) -> Self;
unsafe fn from_glib_container_num(ptr: P, num: usize) -> Self;
unsafe fn from_glib_full_num(ptr: P, num: usize) -> Self; }

Translate from a container.

Required methods

unsafe fn from_glib_none_num(ptr: P, num: usize) -> Self

Transfer: none.

num is the advised number of elements.

unsafe fn from_glib_container_num(ptr: P, num: usize) -> Self

Transfer: container.

num is the advised number of elements.

unsafe fn from_glib_full_num(ptr: P, num: usize) -> Self

Transfer: full.

num is the advised number of elements.

Loading content...

Implementations on Foreign Types

impl<P, PP: Ptr, T: FromGlibContainerAsVec<P, PP>> FromGlibContainer<P, PP> for Vec<T>[src]

impl FromGlibContainer<*const i8, *mut GHashTable> for HashMap<String, String>[src]

Loading content...

Implementors

Loading content...