pub struct SecurityStateExplanation {
pub security_state: SecurityState,
pub title: String,
pub summary: String,
pub description: String,
pub mixed_content_type: MixedContentType,
pub certificate: Vec<String>,
pub recommendations: Option<Vec<String>>,
}Fields§
§security_state: SecurityState§title: String§summary: String§description: String§mixed_content_type: MixedContentType§certificate: Vec<String>§recommendations: Option<Vec<String>>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
Source§impl PartialEq for SecurityStateExplanation
impl PartialEq for SecurityStateExplanation
Source§impl Serialize for SecurityStateExplanation
impl Serialize for SecurityStateExplanation
impl StructuralPartialEq for SecurityStateExplanation
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