Struct webkit2gtk::WebsiteData
source · [−]#[repr(transparent)]pub struct WebsiteData { /* private fields */ }
v2_16
only.Expand description
Data stored locally by a web site.
WebKitWebsiteData represents data stored in the client by a particular website.
A website is normally a set of URLs grouped by domain name. You can get the website name,
which is usually the domain, with name()
.
Documents loaded from the file system, like file:// URIs, are all grouped in the same WebKitWebsiteData
with the name “Local files”.
A website can store different types of data in the client side. WebsiteDataTypes
is an enum containing
all the possible data types; use types()
to get the bitmask of data types.
It’s also possible to know the size of the data stored for some of the WebsiteDataTypes
by using
size()
.
A list of WebKitWebsiteData can be retrieved with WebsiteDataManagerExt::fetch()
. See WebsiteDataManager
for more information.
Implementations
sourceimpl WebsiteData
impl WebsiteData
pub fn as_ptr(&self) -> *mut WebKitWebsiteData
sourceimpl WebsiteData
impl WebsiteData
sourcepub fn name(&self) -> Option<GString>
pub fn name(&self) -> Option<GString>
Gets the name of WebsiteData
.
This is the website name, normally represented by
a domain or host name. All local documents are grouped in the same WebsiteData
using
the name “Local files”.
Returns
the website name of self
.
sourcepub fn size(&self, types: WebsiteDataTypes) -> u64
pub fn size(&self, types: WebsiteDataTypes) -> u64
Gets the size of the data of types types
in a WebsiteData
.
Note that currently the data size is only known for WebsiteDataTypes::DISK_CACHE
data type
so for all other types 0 will be returned.
types
a bitmask of WebsiteDataTypes
Returns
the size of self
for the given types
.
sourcepub fn types(&self) -> WebsiteDataTypes
pub fn types(&self) -> WebsiteDataTypes
Gets the types of data stored in the client for a WebsiteData
.
These are the
types actually present, not the types queried with WebsiteDataManagerExt::fetch()
.
Returns
a bitmask of WebsiteDataTypes
in self
Trait Implementations
sourceimpl Clone for WebsiteData
impl Clone for WebsiteData
sourceimpl Debug for WebsiteData
impl Debug for WebsiteData
sourceimpl Hash for WebsiteData
impl Hash for WebsiteData
sourceimpl Ord for WebsiteData
impl Ord for WebsiteData
sourcefn cmp(&self, other: &WebsiteData) -> Ordering
fn cmp(&self, other: &WebsiteData) -> 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<WebsiteData> for WebsiteData
impl PartialEq<WebsiteData> for WebsiteData
sourcefn eq(&self, other: &WebsiteData) -> bool
fn eq(&self, other: &WebsiteData) -> bool
sourceimpl PartialOrd<WebsiteData> for WebsiteData
impl PartialOrd<WebsiteData> for WebsiteData
sourcefn partial_cmp(&self, other: &WebsiteData) -> Option<Ordering>
fn partial_cmp(&self, other: &WebsiteData) -> 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 WebsiteData
impl StaticType for WebsiteData
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.