pub trait WebFormManagerExt:
IsA<WebFormManager>
+ Sealed
+ 'static {
// Provided methods
fn connect_will_send_submit_event<F: Fn(&Self, &Value, &Frame, &Frame) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_will_submit_form<F: Fn(&Self, &Value, &Frame, &Frame) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
fn connect_will_send_submit_event<F: Fn(&Self, &Value, &Frame, &Frame) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_will_submit_form<F: Fn(&Self, &Value, &Frame, &Frame) + '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.