pub struct VisibleSecurityState { /* private fields */ }Available on crate features
Security and experimental only.Expand description
Security state information about the page.
Implementations§
Source§impl VisibleSecurityState
impl VisibleSecurityState
pub fn builder() -> VisibleSecurityStateBuilder
Sourcepub fn security_state(&self) -> &SecurityState
pub fn security_state(&self) -> &SecurityState
The security level of the page.
Sourcepub fn certificate_security_state(&self) -> Option<&JsonValue>
pub fn certificate_security_state(&self) -> Option<&JsonValue>
Security state details about the page certificate.
Sourcepub fn safety_tip_info(&self) -> Option<&JsonValue>
pub fn safety_tip_info(&self) -> Option<&JsonValue>
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.
Sourcepub fn security_state_issue_ids(&self) -> &[String]
pub fn security_state_issue_ids(&self) -> &[String]
Array of security state issues ids.
Trait Implementations§
Source§impl Clone for VisibleSecurityState
impl Clone for VisibleSecurityState
Source§fn clone(&self) -> VisibleSecurityState
fn clone(&self) -> VisibleSecurityState
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 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
Auto Trait Implementations§
impl Freeze for VisibleSecurityState
impl RefUnwindSafe for VisibleSecurityState
impl Send for VisibleSecurityState
impl Sync for VisibleSecurityState
impl Unpin for VisibleSecurityState
impl UnwindSafe for VisibleSecurityState
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