pub trait AutomationSessionExt:
IsA<AutomationSession>
+ Sealed
+ 'static {
// Provided methods
fn application_info(&self) -> Option<ApplicationInfo> { ... }
fn id(&self) -> Option<GString> { ... }
fn set_application_info(&self, info: &ApplicationInfo) { ... }
fn connect_create_web_view<F: Fn(&Self) -> WebView + 'static>(
&self,
detail: Option<&str>,
f: F,
) -> SignalHandlerId { ... }
}
Available on crate feature
v2_18
only.Provided Methods§
fn application_info(&self) -> Option<ApplicationInfo>
fn id(&self) -> Option<GString>
fn set_application_info(&self, info: &ApplicationInfo)
fn connect_create_web_view<F: Fn(&Self) -> WebView + 'static>( &self, detail: Option<&str>, 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.