pub enum ControlScope {
EntityLevel,
TransactionLevel,
ItGeneralControl,
ItApplicationControl,
}Expand description
Control scope distinguishing entity-level from transaction-level controls.
Variants§
EntityLevel
Entity-level controls operate across the organization and are typically more pervasive in nature (e.g., tone at the top, code of conduct).
TransactionLevel
Transaction-level controls operate at the process or transaction level and are typically more specific (e.g., three-way match, approvals).
ItGeneralControl
IT General Controls (ITGCs) are controls over the IT environment that support the effective functioning of application controls.
ItApplicationControl
IT Application Controls are automated controls embedded within applications to ensure data integrity and proper authorization.
Trait Implementations§
Source§impl Clone for ControlScope
impl Clone for ControlScope
Source§fn clone(&self) -> ControlScope
fn clone(&self) -> ControlScope
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 ControlScope
impl Debug for ControlScope
Source§impl<'de> Deserialize<'de> for ControlScope
impl<'de> Deserialize<'de> for ControlScope
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 ControlScope
impl Display for ControlScope
Source§impl Hash for ControlScope
impl Hash for ControlScope
Source§impl PartialEq for ControlScope
impl PartialEq for ControlScope
Source§impl Serialize for ControlScope
impl Serialize for ControlScope
impl Copy for ControlScope
impl Eq for ControlScope
impl StructuralPartialEq for ControlScope
Auto Trait Implementations§
impl Freeze for ControlScope
impl RefUnwindSafe for ControlScope
impl Send for ControlScope
impl Sync for ControlScope
impl Unpin for ControlScope
impl UnwindSafe for ControlScope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.