tensor_price_lock/generated/types/
t_token_standard.rs

1//! This code was AUTOGENERATED using the kinobi library.
2//! Please DO NOT EDIT THIS FILE, instead use visitors
3//! to add features, then rerun kinobi to update it.
4//!
5//! <https://github.com/kinobi-so/kinobi>
6//!
7
8use borsh::BorshDeserialize;
9use borsh::BorshSerialize;
10use num_derive::FromPrimitive;
11
12#[derive(
13    BorshSerialize,
14    BorshDeserialize,
15    Clone,
16    Debug,
17    Eq,
18    PartialEq,
19    Copy,
20    PartialOrd,
21    Hash,
22    FromPrimitive,
23)]
24#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
25pub enum TTokenStandard {
26    NonFungible,
27    FungibleAsset,
28    Fungible,
29    NonFungibleEdition,
30}