pub struct ControlImplementation {
pub description: String,
pub implemented_requirements: Vec<ControlBasedRequirement>,
pub set_parameters: Option<Vec<SetParameterValue>>,
}
Expand description
Describes how the system satisfies a set of controls.
Fields§
§description: String
A statement describing important things to know about how this set of control satisfaction documentation is approached.
implemented_requirements: Vec<ControlBasedRequirement>
§set_parameters: Option<Vec<SetParameterValue>>
Trait Implementations§
Source§impl Clone for ControlImplementation
impl Clone for ControlImplementation
Source§fn clone(&self) -> ControlImplementation
fn clone(&self) -> ControlImplementation
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 ControlImplementation
impl Debug for ControlImplementation
Source§impl<'de> Deserialize<'de> for ControlImplementation
impl<'de> Deserialize<'de> for ControlImplementation
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 Display for ControlImplementation
impl Display for ControlImplementation
Source§impl From<&ControlImplementation> for ControlImplementation
impl From<&ControlImplementation> for ControlImplementation
Source§fn from(value: &ControlImplementation) -> Self
fn from(value: &ControlImplementation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ControlImplementation
impl PartialEq for ControlImplementation
Auto Trait Implementations§
impl Freeze for ControlImplementation
impl RefUnwindSafe for ControlImplementation
impl Send for ControlImplementation
impl Sync for ControlImplementation
impl Unpin for ControlImplementation
impl UnwindSafe for ControlImplementation
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