Trait sourceview5::prelude::SectionModelExt

source ·
pub trait SectionModelExt: IsA<SectionModel> + Sealed + 'static {
    // Provided methods
    fn section(&self, position: u32) -> (u32, u32) { ... }
    fn sections_changed(&self, position: u32, n_items: u32) { ... }
    fn connect_sections_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, u32, u32) + 'static { ... }
}

Provided Methods§

source

fn section(&self, position: u32) -> (u32, u32)

source

fn sections_changed(&self, position: u32, n_items: u32)

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> SectionModelExt for O
where O: IsA<SectionModel>,