pub enum EngagementPhase {
Planning,
RiskAssessment,
ControlTesting,
SubstantiveTesting,
Completion,
Reporting,
}Expand description
Current engagement phase.
Variants§
Planning
Planning and understanding the entity
RiskAssessment
Risk assessment procedures
ControlTesting
Testing of controls
SubstantiveTesting
Substantive testing
Completion
Completion procedures
Reporting
Report issuance
Implementations§
Source§impl EngagementPhase
impl EngagementPhase
Sourcepub fn display_name(&self) -> &'static str
pub fn display_name(&self) -> &'static str
Get the phase name for display.
Sourcepub fn isa_reference(&self) -> &'static str
pub fn isa_reference(&self) -> &'static str
Get the ISA reference for this phase.
Trait Implementations§
Source§impl Clone for EngagementPhase
impl Clone for EngagementPhase
Source§fn clone(&self) -> EngagementPhase
fn clone(&self) -> EngagementPhase
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 EngagementPhase
impl Debug for EngagementPhase
Source§impl Default for EngagementPhase
impl Default for EngagementPhase
Source§fn default() -> EngagementPhase
fn default() -> EngagementPhase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EngagementPhase
impl<'de> Deserialize<'de> for EngagementPhase
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 Hash for EngagementPhase
impl Hash for EngagementPhase
Source§impl PartialEq for EngagementPhase
impl PartialEq for EngagementPhase
Source§impl Serialize for EngagementPhase
impl Serialize for EngagementPhase
impl Copy for EngagementPhase
impl Eq for EngagementPhase
impl StructuralPartialEq for EngagementPhase
Auto Trait Implementations§
impl Freeze for EngagementPhase
impl RefUnwindSafe for EngagementPhase
impl Send for EngagementPhase
impl Sync for EngagementPhase
impl Unpin for EngagementPhase
impl UnwindSafe for EngagementPhase
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.