pub struct VisibleSecurityState {
pub security_state: SecurityState,
pub certificate_security_state: Option<CertificateSecurityState>,
pub safety_tip_info: Option<SafetyTipInfo>,
pub security_state_issue_ids: Vec<String>,
}Expand description
Security state information about the page. VisibleSecurityState
Fields§
§security_state: SecurityStateThe security level of the page.
certificate_security_state: Option<CertificateSecurityState>Security state details about the page certificate.
safety_tip_info: Option<SafetyTipInfo>The type of Safety Tip triggered on the page. Note that this field will be set even if the Safety Tip UI was not actually shown.
security_state_issue_ids: Vec<String>Array of security state issues ids.
Implementations§
source§impl VisibleSecurityState
impl VisibleSecurityState
pub fn builder() -> VisibleSecurityStateBuilder
source§impl VisibleSecurityState
impl VisibleSecurityState
pub const IDENTIFIER: &'static str = "Security.VisibleSecurityState"
Trait Implementations§
source§impl Clone for VisibleSecurityState
impl Clone for VisibleSecurityState
source§fn clone(&self) -> VisibleSecurityState
fn clone(&self) -> VisibleSecurityState
Returns a copy 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 VisibleSecurityState
impl Debug for VisibleSecurityState
source§impl<'de> Deserialize<'de> for VisibleSecurityState
impl<'de> Deserialize<'de> for VisibleSecurityState
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
source§impl PartialEq<VisibleSecurityState> for VisibleSecurityState
impl PartialEq<VisibleSecurityState> for VisibleSecurityState
source§fn eq(&self, other: &VisibleSecurityState) -> bool
fn eq(&self, other: &VisibleSecurityState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.