Struct webkit2gtk::UserStyleSheet
source · [−]#[repr(transparent)]pub struct UserStyleSheet { /* private fields */ }
v2_6
only.Expand description
A CSS style sheet which can be injected in loaded pages.
Implementations
sourceimpl UserStyleSheet
impl UserStyleSheet
pub fn as_ptr(&self) -> *mut WebKitUserStyleSheet
sourceimpl UserStyleSheet
impl UserStyleSheet
sourcepub fn new(
source: &str,
injected_frames: UserContentInjectedFrames,
level: UserStyleLevel,
allow_list: &[&str],
block_list: &[&str]
) -> UserStyleSheet
pub fn new(
source: &str,
injected_frames: UserContentInjectedFrames,
level: UserStyleLevel,
allow_list: &[&str],
block_list: &[&str]
) -> UserStyleSheet
Creates a new user style sheet.
Style sheets 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 style
sheet 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 style sheet.
injected_frames
A UserContentInjectedFrames
value
level
allow_list
An allow_list of URI patterns or None
block_list
A block_list of URI patterns or None
Returns
A new UserStyleSheet
sourcepub fn for_world(
source: &str,
injected_frames: UserContentInjectedFrames,
level: UserStyleLevel,
world_name: &str,
allow_list: &[&str],
block_list: &[&str]
) -> UserStyleSheet
Available on crate feature v2_22
only.
pub fn for_world(
source: &str,
injected_frames: UserContentInjectedFrames,
level: UserStyleLevel,
world_name: &str,
allow_list: &[&str],
block_list: &[&str]
) -> UserStyleSheet
v2_22
only.Creates a new user style sheet for script world.
Creates a new user style sheet for script world with name world_name
.
See new()
for a full description.
source
Source code of the user style sheet.
injected_frames
A UserContentInjectedFrames
value
level
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 UserStyleSheet
Trait Implementations
sourceimpl Clone for UserStyleSheet
impl Clone for UserStyleSheet
sourceimpl Debug for UserStyleSheet
impl Debug for UserStyleSheet
sourceimpl Hash for UserStyleSheet
impl Hash for UserStyleSheet
sourceimpl Ord for UserStyleSheet
impl Ord for UserStyleSheet
sourcefn cmp(&self, other: &UserStyleSheet) -> Ordering
fn cmp(&self, other: &UserStyleSheet) -> 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<UserStyleSheet> for UserStyleSheet
impl PartialEq<UserStyleSheet> for UserStyleSheet
sourcefn eq(&self, other: &UserStyleSheet) -> bool
fn eq(&self, other: &UserStyleSheet) -> bool
sourceimpl PartialOrd<UserStyleSheet> for UserStyleSheet
impl PartialOrd<UserStyleSheet> for UserStyleSheet
sourcefn partial_cmp(&self, other: &UserStyleSheet) -> Option<Ordering>
fn partial_cmp(&self, other: &UserStyleSheet) -> 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 UserStyleSheet
impl StaticType for UserStyleSheet
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.