Skip to main content

reflect_sdk/generated/types/
role.rs

1//! This code was AUTOGENERATED using the codama library.
2//! Please DO NOT EDIT THIS FILE, instead use visitors
3//! to add features, then rerun codama to update it.
4//!
5//! <https://github.com/codama-idl/codama>
6//!
7
8use borsh::BorshSerialize;
9use borsh::BorshDeserialize;
10use num_derive::FromPrimitive;
11
12#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq, Copy, PartialOrd, Hash, FromPrimitive)]
13#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
14pub enum Role {
15UNSET,
16PUBLIC,
17TESTEE,
18FREEZE,
19CRANK,
20MANAGER,
21SUPREMO,
22OVERMINT,
23}
24
25