pub struct SecurityStateExplanation { /* private fields */ }
Available on crate feature
Security
only.Expand description
An explanation of an factor contributing to the security state.
Implementations§
Source§impl SecurityStateExplanation
impl SecurityStateExplanation
pub fn builder() -> SecurityStateExplanationBuilder
Sourcepub fn security_state(&self) -> &SecurityState
pub fn security_state(&self) -> &SecurityState
Security state representing the severity of the factor being explained.
Sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Full text explanation of the factor.
Sourcepub fn mixed_content_type(&self) -> &MixedContentType
pub fn mixed_content_type(&self) -> &MixedContentType
The type of mixed content described by the explanation.
Sourcepub fn certificate(&self) -> &[String]
pub fn certificate(&self) -> &[String]
Page certificate.
Sourcepub fn recommendations(&self) -> Option<&Vec<String>>
pub fn recommendations(&self) -> Option<&Vec<String>>
Recommendations to fix any issues.
Trait Implementations§
Source§impl Clone for SecurityStateExplanation
impl Clone for SecurityStateExplanation
Source§fn clone(&self) -> SecurityStateExplanation
fn clone(&self) -> SecurityStateExplanation
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 SecurityStateExplanation
impl Debug for SecurityStateExplanation
Source§impl<'de> Deserialize<'de> for SecurityStateExplanation
impl<'de> Deserialize<'de> for SecurityStateExplanation
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 SecurityStateExplanation
impl RefUnwindSafe for SecurityStateExplanation
impl Send for SecurityStateExplanation
impl Sync for SecurityStateExplanation
impl Unpin for SecurityStateExplanation
impl UnwindSafe for SecurityStateExplanation
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