pub struct ControlMapping {
pub control: SecurityControl,
pub framework: Framework,
pub requirements: Vec<String>,
pub rationale: String,
pub status: ComplianceStatus,
pub coverage_percent: u8,
}Expand description
A mapping between an OxideShield control and a framework requirement.
Fields§
§control: SecurityControlThe OxideShield control.
framework: FrameworkFramework this mapping applies to.
requirements: Vec<String>Requirement IDs addressed by this control.
rationale: StringHow the control addresses the requirements.
status: ComplianceStatusCurrent compliance status.
coverage_percent: u8Coverage percentage (0-100).
Trait Implementations§
Source§impl Clone for ControlMapping
impl Clone for ControlMapping
Source§fn clone(&self) -> ControlMapping
fn clone(&self) -> ControlMapping
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 ControlMapping
impl Debug for ControlMapping
Source§impl<'de> Deserialize<'de> for ControlMapping
impl<'de> Deserialize<'de> for ControlMapping
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 ControlMapping
impl RefUnwindSafe for ControlMapping
impl Send for ControlMapping
impl Sync for ControlMapping
impl Unpin for ControlMapping
impl UnwindSafe for ControlMapping
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