Trait sourceview5::prelude::FileMonitorExt

source ·
pub trait FileMonitorExt: IsA<FileMonitor> + Sealed + 'static {
    // Provided methods
    fn cancel(&self) -> bool { ... }
    fn emit_event(
        &self,
        child: &impl IsA<File>,
        other_file: &impl IsA<File>,
        event_type: FileMonitorEvent,
    ) { ... }
    fn is_cancelled(&self) -> bool { ... }
    fn set_rate_limit(&self, limit_msecs: i32) { ... }
    fn rate_limit(&self) -> i32 { ... }
    fn connect_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &File, Option<&File>, FileMonitorEvent) + 'static { ... }
    fn connect_cancelled_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_rate_limit_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn cancel(&self) -> bool

source

fn emit_event( &self, child: &impl IsA<File>, other_file: &impl IsA<File>, event_type: FileMonitorEvent, )

source

fn is_cancelled(&self) -> bool

source

fn set_rate_limit(&self, limit_msecs: i32)

source

fn rate_limit(&self) -> i32

source

fn connect_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &File, Option<&File>, FileMonitorEvent) + 'static,

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FileMonitorExt for O
where O: IsA<FileMonitor>,