#[repr(u8)]pub enum ArchivedFraudPatternType {
CircularFlow = 0,
SelfLoop = 1,
BenfordViolation = 2,
ThresholdClustering = 3,
AfterHoursEntry = 4,
HighVelocity = 5,
UnusualPairing = 6,
DormantActivation = 7,
RoundAmounts = 8,
DuplicateTransaction = 9,
StructuredTransactions = 10,
ReversalAnomaly = 11,
}Expand description
An archived FraudPatternType
Variants§
CircularFlow = 0
The archived counterpart of FraudPatternType::CircularFlow
SelfLoop = 1
The archived counterpart of FraudPatternType::SelfLoop
BenfordViolation = 2
The archived counterpart of FraudPatternType::BenfordViolation
ThresholdClustering = 3
The archived counterpart of FraudPatternType::ThresholdClustering
AfterHoursEntry = 4
The archived counterpart of FraudPatternType::AfterHoursEntry
HighVelocity = 5
The archived counterpart of FraudPatternType::HighVelocity
UnusualPairing = 6
The archived counterpart of FraudPatternType::UnusualPairing
DormantActivation = 7
The archived counterpart of FraudPatternType::DormantActivation
RoundAmounts = 8
The archived counterpart of FraudPatternType::RoundAmounts
DuplicateTransaction = 9
The archived counterpart of FraudPatternType::DuplicateTransaction
StructuredTransactions = 10
The archived counterpart of FraudPatternType::StructuredTransactions
ReversalAnomaly = 11
The archived counterpart of FraudPatternType::ReversalAnomaly
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArchivedFraudPatternType
impl RefUnwindSafe for ArchivedFraudPatternType
impl Send for ArchivedFraudPatternType
impl Sync for ArchivedFraudPatternType
impl Unpin for ArchivedFraudPatternType
impl UnwindSafe for ArchivedFraudPatternType
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.