pub struct InsecureContentStatus { /* private fields */ }Expand description
Information about insecure content on the page.
Implementations§
Source§impl InsecureContentStatus
impl InsecureContentStatus
pub fn builder( ranMixedContent: bool, displayedMixedContent: bool, containedMixedForm: bool, ranContentWithCertErrors: bool, displayedContentWithCertErrors: bool, ranInsecureContentStyle: SecurityState, displayedInsecureContentStyle: SecurityState, ) -> InsecureContentStatusBuilder
pub fn ranMixedContent(&self) -> bool
pub fn displayedMixedContent(&self) -> bool
pub fn containedMixedForm(&self) -> bool
pub fn ranContentWithCertErrors(&self) -> bool
pub fn displayedContentWithCertErrors(&self) -> bool
pub fn ranInsecureContentStyle(&self) -> &SecurityState
pub fn displayedInsecureContentStyle(&self) -> &SecurityState
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 (const: unstable) · 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 Default for InsecureContentStatus
impl Default for InsecureContentStatus
Source§fn default() -> InsecureContentStatus
fn default() -> InsecureContentStatus
Returns the “default value” for a type. Read more
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 UnsafeUnpin 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