[go: up one dir, main page]

GtkMountOperationExt

Trait GtkMountOperationExt 

Source
pub trait GtkMountOperationExt: IsA<MountOperation> + 'static {
    // Provided methods
    fn display(&self) -> Display { ... }
    fn parent(&self) -> Option<Window> { ... }
    fn is_showing(&self) -> bool { ... }
    fn set_display(&self, display: &impl IsA<Display>) { ... }
    fn set_parent(&self, parent: Option<&impl IsA<Window>>) { ... }
    fn connect_display_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_is_showing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_parent_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn display(&self) -> Display

Source

fn parent(&self) -> Option<Window>

Source

fn is_showing(&self) -> bool

Source

fn set_display(&self, display: &impl IsA<Display>)

Source

fn set_parent(&self, parent: Option<&impl IsA<Window>>)

Source

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

Source

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

Source

fn connect_parent_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§