pub struct InsecureContentStatus { /* private fields */ }
👎Deprecated
Available on crate feature
Security
only.Expand description
Information about insecure content on the page.
Implementations§
Source§impl InsecureContentStatus
impl InsecureContentStatus
pub fn builder() -> InsecureContentStatusBuilder
👎Deprecated
Sourcepub fn ran_mixed_content(&self) -> bool
👎Deprecated
pub fn ran_mixed_content(&self) -> bool
Always false.
Sourcepub fn displayed_mixed_content(&self) -> bool
👎Deprecated
pub fn displayed_mixed_content(&self) -> bool
Always false.
Sourcepub fn contained_mixed_form(&self) -> bool
👎Deprecated
pub fn contained_mixed_form(&self) -> bool
Always false.
Sourcepub fn ran_content_with_cert_errors(&self) -> bool
👎Deprecated
pub fn ran_content_with_cert_errors(&self) -> bool
Always false.
Sourcepub fn displayed_content_with_cert_errors(&self) -> bool
👎Deprecated
pub fn displayed_content_with_cert_errors(&self) -> bool
Always false.
Sourcepub fn ran_insecure_content_style(&self) -> &SecurityState
👎Deprecated
pub fn ran_insecure_content_style(&self) -> &SecurityState
Always set to unknown.
Sourcepub fn displayed_insecure_content_style(&self) -> &SecurityState
👎Deprecated
pub fn displayed_insecure_content_style(&self) -> &SecurityState
Always set to unknown.
Trait Implementations§
Source§impl Clone for InsecureContentStatus
impl Clone for InsecureContentStatus
Source§fn clone(&self) -> InsecureContentStatus
fn clone(&self) -> InsecureContentStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InsecureContentStatus
impl Debug for InsecureContentStatus
Source§impl<'de> Deserialize<'de> for InsecureContentStatus
impl<'de> Deserialize<'de> for InsecureContentStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InsecureContentStatus
impl RefUnwindSafe for InsecureContentStatus
impl Send for InsecureContentStatus
impl Sync for InsecureContentStatus
impl Unpin for InsecureContentStatus
impl UnwindSafe for InsecureContentStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more