pub trait FuseExt: IsA<Fuse> + Sealed + 'static {
Show 13 methods
// Provided methods
fn widget(&self) -> Widget { ... }
fn shown(&self) { ... }
fn hidden(&self) { ... }
fn search_callback(&self, location: &str) { ... }
fn category(&self) -> FuseCategory { ... }
fn index(&self) -> i32 { ... }
fn code_name(&self) -> GString { ... }
fn display_name(&self) -> GString { ... }
fn description(&self) -> GString { ... }
fn icon(&self) -> GString { ... }
fn can_show(&self) -> bool { ... }
fn set_can_show(&self, value: bool) { ... }
fn connect_can_show_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
sourcefn search_callback(&self, location: &str)
fn search_callback(&self, location: &str)
§location
fn category(&self) -> FuseCategory
fn index(&self) -> i32
fn code_name(&self) -> GString
fn display_name(&self) -> GString
fn description(&self) -> GString
fn icon(&self) -> GString
fn can_show(&self) -> bool
fn set_can_show(&self, value: bool)
fn connect_can_show_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.