pub trait NavigationPolicyDecisionExt: IsA<NavigationPolicyDecision> + Sealed + 'static {
// Provided methods
fn frame_name(&self) -> Option<GString> { ... }
fn modifiers(&self) -> u32 { ... }
fn mouse_button(&self) -> u32 { ... }
fn navigation_action(&self) -> Option<NavigationAction> { ... }
fn navigation_type(&self) -> NavigationType { ... }
fn request(&self) -> Option<URIRequest> { ... }
fn connect_frame_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_modifiers_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_mouse_button_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_navigation_action_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_navigation_type_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_request_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Provided Methods§
sourcefn frame_name(&self) -> Option<GString>
fn frame_name(&self) -> Option<GString>
👎Deprecated: Since 2.40
👎Deprecated: Since 2.6
Available on crate feature
v2_6
only.👎Deprecated: Since 2.6
sourcefn request(&self) -> Option<URIRequest>
fn request(&self) -> Option<URIRequest>
👎Deprecated: Since 2.6
sourcefn connect_frame_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_frame_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
👎Deprecated: Since 2.40
sourcefn connect_modifiers_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_modifiers_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
👎Deprecated: Since 2.6
👎Deprecated: Since 2.6
Available on crate feature
v2_6
only.👎Deprecated: Since 2.6
sourcefn connect_request_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_request_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
👎Deprecated: Since 2.6
Object Safety§
This trait is not object safe.