#[repr(C)]pub struct GListModelInterface {
pub g_iface: GTypeInterface,
pub get_item_type: Option<extern "C" fn(*mut GListModel) -> GType>,
pub get_n_items: Option<extern "C" fn(*mut GListModel) -> guint>,
pub get_item: Option<extern "C" fn(*mut GListModel, guint) -> gpointer>,
}Fields§
§g_iface: GTypeInterface§get_item_type: Option<extern "C" fn(*mut GListModel) -> GType>§get_n_items: Option<extern "C" fn(*mut GListModel) -> guint>§get_item: Option<extern "C" fn(*mut GListModel, guint) -> gpointer>Auto Trait Implementations§
impl Freeze for GListModelInterface
impl RefUnwindSafe for GListModelInterface
impl Send for GListModelInterface
impl Sync for GListModelInterface
impl Unpin for GListModelInterface
impl UnwindSafe for GListModelInterface
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more