pub enum ConcealmentTechnique {
DocumentManipulation,
ApprovalCircumvention,
TimingExploitation,
TransactionSplitting,
AccountMisclassification,
Collusion,
DataAlteration,
FalseDocumentation,
}Expand description
Concealment technique used in fraud.
Variants§
DocumentManipulation
Document manipulation or forgery.
ApprovalCircumvention
Circumventing approval processes.
TimingExploitation
Exploiting timing (period-end, holidays).
TransactionSplitting
Transaction splitting to avoid thresholds.
AccountMisclassification
Account misclassification.
Collusion
Collusion with other employees.
DataAlteration
Data alteration or deletion.
FalseDocumentation
Creating false documentation.
Implementations§
Source§impl ConcealmentTechnique
impl ConcealmentTechnique
Sourcepub fn difficulty_bonus(&self) -> f64
pub fn difficulty_bonus(&self) -> f64
Returns the difficulty bonus this technique adds.
Trait Implementations§
Source§impl Clone for ConcealmentTechnique
impl Clone for ConcealmentTechnique
Source§fn clone(&self) -> ConcealmentTechnique
fn clone(&self) -> ConcealmentTechnique
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 ConcealmentTechnique
impl Debug for ConcealmentTechnique
Source§impl<'de> Deserialize<'de> for ConcealmentTechnique
impl<'de> Deserialize<'de> for ConcealmentTechnique
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 ConcealmentTechnique
impl Hash for ConcealmentTechnique
Source§impl PartialEq for ConcealmentTechnique
impl PartialEq for ConcealmentTechnique
Source§impl Serialize for ConcealmentTechnique
impl Serialize for ConcealmentTechnique
impl Copy for ConcealmentTechnique
impl Eq for ConcealmentTechnique
impl StructuralPartialEq for ConcealmentTechnique
Auto Trait Implementations§
impl Freeze for ConcealmentTechnique
impl RefUnwindSafe for ConcealmentTechnique
impl Send for ConcealmentTechnique
impl Sync for ConcealmentTechnique
impl Unpin for ConcealmentTechnique
impl UnwindSafe for ConcealmentTechnique
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.