pub struct GovernanceLayerSettings {
pub include_coso: bool,
pub include_controls: bool,
pub include_sox: bool,
pub include_vendors: bool,
pub include_customers: bool,
pub include_employees: bool,
}Expand description
Layer 1: Governance & Controls layer settings.
Fields§
§include_coso: boolInclude COSO framework nodes (5 components + 17 principles).
include_controls: boolInclude internal control nodes.
include_sox: boolInclude SOX assertion nodes.
include_vendors: boolInclude vendor master data nodes.
include_customers: boolInclude customer master data nodes.
include_employees: boolInclude employee/organizational nodes.
Trait Implementations§
Source§impl Clone for GovernanceLayerSettings
impl Clone for GovernanceLayerSettings
Source§fn clone(&self) -> GovernanceLayerSettings
fn clone(&self) -> GovernanceLayerSettings
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 GovernanceLayerSettings
impl Debug for GovernanceLayerSettings
Source§impl Default for GovernanceLayerSettings
impl Default for GovernanceLayerSettings
Source§impl<'de> Deserialize<'de> for GovernanceLayerSettings
impl<'de> Deserialize<'de> for GovernanceLayerSettings
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 GovernanceLayerSettings
impl RefUnwindSafe for GovernanceLayerSettings
impl Send for GovernanceLayerSettings
impl Sync for GovernanceLayerSettings
impl Unpin for GovernanceLayerSettings
impl UnsafeUnpin for GovernanceLayerSettings
impl UnwindSafe for GovernanceLayerSettings
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