Struct webkit2gtk::SecurityOrigin
source · [−]#[repr(transparent)]pub struct SecurityOrigin { /* private fields */ }
v2_16
only.Expand description
A security boundary for websites.
SecurityOrigin
is a representation of a security domain
defined by websites. A security origin consists of a protocol, a
hostname, and an optional port number.
Resources with the same security origin can generally access each
other for client-side scripting or database access. When comparing
origins, beware that if both protocol and host are None
, the origins
should not be treated as equal.
Implementations
sourceimpl SecurityOrigin
impl SecurityOrigin
pub fn as_ptr(&self) -> *mut WebKitSecurityOrigin
sourceimpl SecurityOrigin
impl SecurityOrigin
sourcepub fn new(protocol: &str, host: &str, port: u16) -> SecurityOrigin
pub fn new(protocol: &str, host: &str, port: u16) -> SecurityOrigin
sourcepub fn for_uri(uri: &str) -> SecurityOrigin
pub fn for_uri(uri: &str) -> SecurityOrigin
Create a new security origin from the provided.
Create a new security origin from the provided URI. Components of
uri
other than protocol, host, and port do not affect the created
SecurityOrigin
.
uri
The URI for the new origin
Returns
sourcepub fn host(&self) -> Option<GString>
pub fn host(&self) -> Option<GString>
Gets the hostname of self
.
It is reasonable for this to be None
if its protocol does not require a host component.
Returns
The host of the SecurityOrigin
sourcepub fn port(&self) -> u16
pub fn port(&self) -> u16
Gets the port of self
.
This function will always return 0 if the
port is the default port for the given protocol. For example,
http://example.com has the same security origin as
http://example.com:80, and this function will return 0 for a
SecurityOrigin
constructed from either URI.
Returns
The port of the SecurityOrigin
.
sourcepub fn is_opaque(&self) -> bool
👎Deprecated: Since 2.32
pub fn is_opaque(&self) -> bool
This function returns false
.
This function returns false
. SecurityOrigin
is now a simple
wrapper around a <protocol, host, port> triplet, and no longer
represents an origin as defined by web standards that may be opaque.
Deprecated since 2.32
Returns
Trait Implementations
sourceimpl Clone for SecurityOrigin
impl Clone for SecurityOrigin
sourceimpl Debug for SecurityOrigin
impl Debug for SecurityOrigin
sourceimpl Display for SecurityOrigin
impl Display for SecurityOrigin
sourceimpl Hash for SecurityOrigin
impl Hash for SecurityOrigin
sourceimpl Ord for SecurityOrigin
impl Ord for SecurityOrigin
sourcefn cmp(&self, other: &SecurityOrigin) -> Ordering
fn cmp(&self, other: &SecurityOrigin) -> 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<SecurityOrigin> for SecurityOrigin
impl PartialEq<SecurityOrigin> for SecurityOrigin
sourcefn eq(&self, other: &SecurityOrigin) -> bool
fn eq(&self, other: &SecurityOrigin) -> bool
sourceimpl PartialOrd<SecurityOrigin> for SecurityOrigin
impl PartialOrd<SecurityOrigin> for SecurityOrigin
sourcefn partial_cmp(&self, other: &SecurityOrigin) -> Option<Ordering>
fn partial_cmp(&self, other: &SecurityOrigin) -> 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 SecurityOrigin
impl StaticType for SecurityOrigin
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.