Struct webkit2gtk::UserScript
source · [−]#[repr(transparent)]pub struct UserScript { /* private fields */ }
v2_6
only.Expand description
A JavaScript snippet which can be injected in loaded pages.
Implementations
sourceimpl UserScript
impl UserScript
pub fn as_ptr(&self) -> *mut WebKitUserScript
sourceimpl UserScript
impl UserScript
sourcepub fn new(
source: &str,
injected_frames: UserContentInjectedFrames,
injection_time: UserScriptInjectionTime,
allow_list: &[&str],
block_list: &[&str]
) -> UserScript
pub fn new(
source: &str,
injected_frames: UserContentInjectedFrames,
injection_time: UserScriptInjectionTime,
allow_list: &[&str],
block_list: &[&str]
) -> UserScript
Creates a new user script.
Scripts can be applied to some URIs
only by passing non-null values for allow_list
or block_list
. Passing a
None
allow_list implies that all URIs are on the allow_list. The script
is applied if an URI matches the allow_list and not the block_list.
URI patterns must be of the form [protocol]://[host]/[path]
, where the
host and path components can contain the wildcard character (*
) to
represent zero or more other characters.
source
Source code of the user script.
injected_frames
A UserContentInjectedFrames
value
injection_time
A UserScriptInjectionTime
value
allow_list
An allow_list of URI patterns or None
block_list
A block_list of URI patterns or None
Returns
A new UserScript
sourcepub fn for_world(
source: &str,
injected_frames: UserContentInjectedFrames,
injection_time: UserScriptInjectionTime,
world_name: &str,
allow_list: &[&str],
block_list: &[&str]
) -> UserScript
Available on crate feature v2_22
only.
pub fn for_world(
source: &str,
injected_frames: UserContentInjectedFrames,
injection_time: UserScriptInjectionTime,
world_name: &str,
allow_list: &[&str],
block_list: &[&str]
) -> UserScript
v2_22
only.Creates a new user script for script world with name world_name
.
See new()
for a full description.
source
Source code of the user script.
injected_frames
A UserContentInjectedFrames
value
injection_time
A UserScriptInjectionTime
value
world_name
the name of a WebKitScriptWorld
allow_list
An allow_list of URI patterns or None
block_list
A block_list of URI patterns or None
Returns
A new UserScript
Trait Implementations
sourceimpl Clone for UserScript
impl Clone for UserScript
sourceimpl Debug for UserScript
impl Debug for UserScript
sourceimpl Hash for UserScript
impl Hash for UserScript
sourceimpl Ord for UserScript
impl Ord for UserScript
sourcefn cmp(&self, other: &UserScript) -> Ordering
fn cmp(&self, other: &UserScript) -> 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<UserScript> for UserScript
impl PartialEq<UserScript> for UserScript
sourcefn eq(&self, other: &UserScript) -> bool
fn eq(&self, other: &UserScript) -> bool
sourceimpl PartialOrd<UserScript> for UserScript
impl PartialOrd<UserScript> for UserScript
sourcefn partial_cmp(&self, other: &UserScript) -> Option<Ordering>
fn partial_cmp(&self, other: &UserScript) -> 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 UserScript
impl StaticType for UserScript
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.