pub enum Category {
Show 19 variants
None = 0,
WalletService = 1,
MerchantService = 2,
MiningPool = 3,
Exchange = 4,
DeFi = 5,
OTCBroker = 6,
ATM = 7,
Gambling = 8,
IllicitOrganization = 9,
Mixer = 10,
DarknetService = 11,
Scam = 12,
Ransomware = 13,
Theft = 14,
Counterfeit = 15,
TerroristFinancing = 16,
Sanctions = 17,
ChildAbuse = 18,
}Variants§
None = 0
None
WalletService = 1
Wallet service - custodial or mixed wallets
MerchantService = 2
Merchant service
MiningPool = 3
Mining pool
Exchange = 4
Exchange
DeFi = 5
DeFi application
OTCBroker = 6
OTC Broker
ATM = 7
Cryptocurrency ATM
Gambling = 8
Gambling
IllicitOrganization = 9
Illicit organization
Mixer = 10
Mixer
DarknetService = 11
Darknet market or service
Scam = 12
Scam
Ransomware = 13
Ransomware
Theft = 14
Theft - stolen funds
Counterfeit = 15
Counterfeit - fake assets
TerroristFinancing = 16
Terrorist financing
Sanctions = 17
Sanctions
ChildAbuse = 18
Child abuse and porn materials
Trait Implementations§
Source§impl BorshDeserialize for Category
impl BorshDeserialize for Category
Source§impl BorshSerialize for Category
impl BorshSerialize for Category
impl StructuralPartialEq for Category
Auto Trait Implementations§
impl Freeze for Category
impl RefUnwindSafe for Category
impl Send for Category
impl Sync for Category
impl Unpin for Category
impl UnwindSafe for Category
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more