Trait sourceview5::prelude::ListModelExt

source ·
pub trait ListModelExt: IsA<ListModel> + Sealed + 'static {
    // Provided methods
    fn item_type(&self) -> Type { ... }
    fn n_items(&self) -> u32 { ... }
    fn item(&self, position: u32) -> Option<Object> { ... }
    fn items_changed(&self, position: u32, removed: u32, added: u32) { ... }
    fn connect_items_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, u32, u32, u32) + 'static { ... }
}

Provided Methods§

source

fn item_type(&self) -> Type

source

fn n_items(&self) -> u32

source

fn item(&self, position: u32) -> Option<Object>

source

fn items_changed(&self, position: u32, removed: u32, added: u32)

source

fn connect_items_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, u32, u32, u32) + 'static,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> ListModelExt for O
where O: IsA<ListModel>,