Trait FileMonitorExt

Source
pub trait FileMonitorExt: 'static {
    // Required methods
    fn cancel(&self) -> bool;
    fn emit_event<P: IsA<File>, Q: IsA<File>>(
        &self,
        child: &P,
        other_file: &Q,
        event_type: FileMonitorEvent,
    );
    fn is_cancelled(&self) -> bool;
    fn set_rate_limit(&self, limit_msecs: i32);
    fn get_property_cancelled(&self) -> bool;
    fn get_property_rate_limit(&self) -> i32;
    fn connect_changed<F: Fn(&Self, &File, Option<&File>, FileMonitorEvent) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
    fn connect_property_cancelled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
    fn connect_property_rate_limit_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

Source

fn cancel(&self) -> bool

Source

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

Source

fn is_cancelled(&self) -> bool

Source

fn set_rate_limit(&self, limit_msecs: i32)

Source

fn get_property_cancelled(&self) -> bool

Source

fn get_property_rate_limit(&self) -> i32

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§