#[repr(u64)]pub enum Atrix {
Show 28 variants
SOLUSDC = 0,
GMTUSDC = 1,
mSOLUSDC = 2,
BTCUSDC = 3,
USDrUSDC = 4,
PLACEHOLDER_E = 5,
PLACEHOLDER_F = 6,
PLACEHOLDER_G = 7,
PLACEHOLDER_H = 8,
PLACEHOLDER_I = 9,
PLACEHOLDER_J = 10,
PLACEHOLDER_K = 11,
PLACEHOLDER_L = 12,
PLACEHOLDER_M = 13,
PLACEHOLDER_N = 14,
PLACEHOLDER_O = 15,
PLACEHOLDER_P = 16,
PLACEHOLDER_Q = 17,
PLACEHOLDER_R = 18,
PLACEHOLDER_S = 19,
PLACEHOLDER_T = 20,
PLACEHOLDER_U = 21,
PLACEHOLDER_V = 22,
PLACEHOLDER_W = 23,
PLACEHOLDER_X = 24,
PLACEHOLDER_Y = 25,
PLACEHOLDER_Z = 26,
UNKNOWN = 18_446_744_073_709_551_615,
}Variants§
SOLUSDC = 0
GMTUSDC = 1
mSOLUSDC = 2
BTCUSDC = 3
USDrUSDC = 4
PLACEHOLDER_E = 5
PLACEHOLDER_F = 6
PLACEHOLDER_G = 7
PLACEHOLDER_H = 8
PLACEHOLDER_I = 9
PLACEHOLDER_J = 10
PLACEHOLDER_K = 11
PLACEHOLDER_L = 12
PLACEHOLDER_M = 13
PLACEHOLDER_N = 14
PLACEHOLDER_O = 15
PLACEHOLDER_P = 16
PLACEHOLDER_Q = 17
PLACEHOLDER_R = 18
PLACEHOLDER_S = 19
PLACEHOLDER_T = 20
PLACEHOLDER_U = 21
PLACEHOLDER_V = 22
PLACEHOLDER_W = 23
PLACEHOLDER_X = 24
PLACEHOLDER_Y = 25
PLACEHOLDER_Z = 26
UNKNOWN = 18_446_744_073_709_551_615
Implementations§
Trait Implementations§
Source§impl BorshDeserialize for Atrix
impl BorshDeserialize for Atrix
Source§impl BorshSerialize for Atrix
impl BorshSerialize for Atrix
impl Copy for Atrix
impl Eq for Atrix
impl StructuralPartialEq for Atrix
Auto Trait Implementations§
impl Freeze for Atrix
impl RefUnwindSafe for Atrix
impl Send for Atrix
impl Sync for Atrix
impl Unpin for Atrix
impl UnwindSafe for Atrix
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