pub struct ControlList {
pub absent: Option<i32>,
pub automated: Option<i32>,
pub controls: Option<Vec<Value>>,
pub partial: Option<i32>,
pub statement: Option<String>,
pub total: Option<i32>,
pub unverified: Option<i32>,
pub version: Option<String>,
}Fields§
§absent: Option<i32>Absent is how many the organization does not have. Each still names the clause it would satisfy, and none of them moves a coverage number.
automated: Option<i32>Automated is how many run with nobody in the loop.
controls: Option<Vec<Value>>Controls is every control, opaque because the organization owns its shape.
partial: Option<i32>Partial is how many run but do not cover their whole claim.
statement: Option<String>Statement is the counts as one sentence, safe to quote.
total: Option<i32>Total is how many controls this organization publishes.
unverified: Option<i32>Unverified is how many rest on somebody having read the source rather than on a test or an audit row.
version: Option<String>Version is the embedded inventory’s version.
Implementations§
Source§impl ControlList
impl ControlList
pub fn new() -> ControlList
Trait Implementations§
Source§impl Clone for ControlList
impl Clone for ControlList
Source§fn clone(&self) -> ControlList
fn clone(&self) -> ControlList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ControlList
impl Debug for ControlList
Source§impl Default for ControlList
impl Default for ControlList
Source§fn default() -> ControlList
fn default() -> ControlList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ControlList
impl<'de> Deserialize<'de> for ControlList
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 ControlList
impl PartialEq for ControlList
Source§impl Serialize for ControlList
impl Serialize for ControlList
impl StructuralPartialEq for ControlList
Auto Trait Implementations§
impl Freeze for ControlList
impl RefUnwindSafe for ControlList
impl Send for ControlList
impl Sync for ControlList
impl Unpin for ControlList
impl UnsafeUnpin for ControlList
impl UnwindSafe for ControlList
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