pub struct SecurityStandards {
pub owasp: Option<StandardCompliance>,
pub sans: Option<StandardCompliance>,
pub pci: Option<StandardCompliance>,
pub cwe: Option<StandardCompliance>,
}
Expand description
Security standards compliance information
Fields§
§owasp: Option<StandardCompliance>
OWASP compliance
sans: Option<StandardCompliance>
SANS compliance
pci: Option<StandardCompliance>
PCI compliance
cwe: Option<StandardCompliance>
CWE categories
Trait Implementations§
Source§impl Clone for SecurityStandards
impl Clone for SecurityStandards
Source§fn clone(&self) -> SecurityStandards
fn clone(&self) -> SecurityStandards
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 SecurityStandards
impl Debug for SecurityStandards
Source§impl<'de> Deserialize<'de> for SecurityStandards
impl<'de> Deserialize<'de> for SecurityStandards
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 SecurityStandards
impl RefUnwindSafe for SecurityStandards
impl Send for SecurityStandards
impl Sync for SecurityStandards
impl Unpin for SecurityStandards
impl UnwindSafe for SecurityStandards
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