pub struct InsecureContentStatus {
pub ranMixedContent: bool,
pub displayedMixedContent: bool,
pub containedMixedForm: bool,
pub ranContentWithCertErrors: bool,
pub displayedContentWithCertErrors: bool,
pub ranInsecureContentStyle: SecurityState,
pub displayedInsecureContentStyle: SecurityState,
}Expand description
Information about insecure content on the page.
Fields§
§ranMixedContent: boolAlways false.
displayedMixedContent: boolAlways false.
containedMixedForm: boolAlways false.
ranContentWithCertErrors: boolAlways false.
displayedContentWithCertErrors: boolAlways false.
ranInsecureContentStyle: SecurityStateAlways set to unknown.
displayedInsecureContentStyle: SecurityStateAlways 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 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