Enum webkit2gtk::PolicyDecisionType
source · [−]#[non_exhaustive]
pub enum PolicyDecisionType {
NavigationAction,
NewWindowAction,
Response,
// some variants omitted
}
Expand description
Enum values used for determining the type of a policy decision during
signal::WebView::decide-policy
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
NavigationAction
This type of policy decision
is requested when WebKit is about to navigate to a new page in either the
main frame or a subframe. Acceptable policy decisions are either
PolicyDecisionExt::use_()
or PolicyDecisionExt::ignore()
. This
type of policy decision is always a NavigationPolicyDecision
.
NewWindowAction
This type of policy decision
is requested when WebKit is about to create a new window. Acceptable policy
decisions are either PolicyDecisionExt::use_()
or
PolicyDecisionExt::ignore()
. This type of policy decision is always
a NavigationPolicyDecision
. These decisions are useful for implementing
special actions for new windows, such as forcing the new window to open
in a tab when a keyboard modifier is active or handling a special
target attribute on <a>
elements.
Response
This type of decision is used when WebKit has
received a response for a network resource and is about to start the load.
Note that these resources include all subresources of a page such as images
and stylesheets as well as main documents. Appropriate policy responses to
this decision are PolicyDecisionExt::use_()
, PolicyDecisionExt::ignore()
,
or PolicyDecisionExt::download()
. This type of policy decision is always
a ResponsePolicyDecision
. This decision is useful for forcing
some types of resources to be downloaded rather than rendered in the WebView
or to block the transfer of resources entirely.
Trait Implementations
sourceimpl Clone for PolicyDecisionType
impl Clone for PolicyDecisionType
sourcefn clone(&self) -> PolicyDecisionType
fn clone(&self) -> PolicyDecisionType
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for PolicyDecisionType
impl Debug for PolicyDecisionType
sourceimpl Display for PolicyDecisionType
impl Display for PolicyDecisionType
sourceimpl<'a> FromValue<'a> for PolicyDecisionType
impl<'a> FromValue<'a> for PolicyDecisionType
type Checker = GenericValueTypeChecker<PolicyDecisionType>
type Checker = GenericValueTypeChecker<PolicyDecisionType>
sourceunsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moresourceimpl Hash for PolicyDecisionType
impl Hash for PolicyDecisionType
sourceimpl Ord for PolicyDecisionType
impl Ord for PolicyDecisionType
sourcefn cmp(&self, other: &PolicyDecisionType) -> Ordering
fn cmp(&self, other: &PolicyDecisionType) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<PolicyDecisionType> for PolicyDecisionType
impl PartialEq<PolicyDecisionType> for PolicyDecisionType
sourcefn eq(&self, other: &PolicyDecisionType) -> bool
fn eq(&self, other: &PolicyDecisionType) -> bool
sourceimpl PartialOrd<PolicyDecisionType> for PolicyDecisionType
impl PartialOrd<PolicyDecisionType> for PolicyDecisionType
sourcefn partial_cmp(&self, other: &PolicyDecisionType) -> Option<Ordering>
fn partial_cmp(&self, other: &PolicyDecisionType) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl StaticType for PolicyDecisionType
impl StaticType for PolicyDecisionType
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.sourceimpl ToValue for PolicyDecisionType
impl ToValue for PolicyDecisionType
sourceimpl ValueType for PolicyDecisionType
impl ValueType for PolicyDecisionType
type Type = PolicyDecisionType
type Type = PolicyDecisionType
Type
from. Read moreimpl Copy for PolicyDecisionType
impl Eq for PolicyDecisionType
impl StructuralEq for PolicyDecisionType
impl StructuralPartialEq for PolicyDecisionType
Auto Trait Implementations
impl RefUnwindSafe for PolicyDecisionType
impl Send for PolicyDecisionType
impl Sync for PolicyDecisionType
impl Unpin for PolicyDecisionType
impl UnwindSafe for PolicyDecisionType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
sourceimpl<T> ToClosureReturnValue for Twhere
T: ToValue,
impl<T> ToClosureReturnValue for Twhere
T: ToValue,
fn to_closure_return_value(&self) -> Option<Value>
sourceimpl<T> ToSendValue for Twhere
T: Send + ToValue + ?Sized,
impl<T> ToSendValue for Twhere
T: Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.