pub enum PerpetratorLevel {
Employee,
Manager,
OwnerExecutive,
}Expand description
Perpetrator position level (from ACFE statistics).
Variants§
Employee
Entry-level employee.
Manager
Manager or supervisor.
OwnerExecutive
Owner, executive, or C-level.
Implementations§
Source§impl PerpetratorLevel
impl PerpetratorLevel
Sourcepub fn typical_occurrence_rate(&self) -> f64
pub fn typical_occurrence_rate(&self) -> f64
Returns the typical percentage of frauds by position level.
Sourcepub fn typical_median_loss(&self) -> Decimal
pub fn typical_median_loss(&self) -> Decimal
Returns the typical median loss by position level.
Trait Implementations§
Source§impl Clone for PerpetratorLevel
impl Clone for PerpetratorLevel
Source§fn clone(&self) -> PerpetratorLevel
fn clone(&self) -> PerpetratorLevel
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 PerpetratorLevel
impl Debug for PerpetratorLevel
Source§impl<'de> Deserialize<'de> for PerpetratorLevel
impl<'de> Deserialize<'de> for PerpetratorLevel
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 PerpetratorLevel
impl Hash for PerpetratorLevel
Source§impl PartialEq for PerpetratorLevel
impl PartialEq for PerpetratorLevel
Source§impl Serialize for PerpetratorLevel
impl Serialize for PerpetratorLevel
impl Copy for PerpetratorLevel
impl Eq for PerpetratorLevel
impl StructuralPartialEq for PerpetratorLevel
Auto Trait Implementations§
impl Freeze for PerpetratorLevel
impl RefUnwindSafe for PerpetratorLevel
impl Send for PerpetratorLevel
impl Sync for PerpetratorLevel
impl Unpin for PerpetratorLevel
impl UnwindSafe for PerpetratorLevel
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.