#[repr(u8)]pub enum AccountTag {
Show 24 variants
Root = 0,
Mints = 1,
Instruments = 2,
AllWorkers = 3,
PoolsTrace = 4,
TasksTrace = 5,
PoolsLog = 6,
Worker = 7,
Client = 8,
PayoffLog = 9,
MintLog = 10,
TasksLog = 11,
TradeLog = 12,
Oracle = 13,
Admin = 14,
SystemProgram = 15,
Target = 16,
ExternalOracle = 17,
Wallet = 18,
KycAdmin = 19,
ClientToken = 20,
ProgramToken = 21,
Buffer = 22,
AccountDecodeError = 255,
}Variants§
Root = 0
Mints = 1
Instruments = 2
AllWorkers = 3
PoolsTrace = 4
TasksTrace = 5
PoolsLog = 6
Worker = 7
Client = 8
PayoffLog = 9
MintLog = 10
TasksLog = 11
TradeLog = 12
Oracle = 13
Admin = 14
SystemProgram = 15
Target = 16
ExternalOracle = 17
Wallet = 18
KycAdmin = 19
ClientToken = 20
ProgramToken = 21
Buffer = 22
AccountDecodeError = 255
Implementations§
Source§impl AccountTag
impl AccountTag
Trait Implementations§
Source§impl Clone for AccountTag
impl Clone for AccountTag
Source§fn clone(&self) -> AccountTag
fn clone(&self) -> AccountTag
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountTag
impl Debug for AccountTag
Source§impl IntoEnumIterator for AccountTag
impl IntoEnumIterator for AccountTag
type Iterator = AccountTagIter
fn iter() -> AccountTagIter ⓘ
Source§impl PartialEq for AccountTag
impl PartialEq for AccountTag
impl Copy for AccountTag
impl StructuralPartialEq for AccountTag
Auto Trait Implementations§
impl Freeze for AccountTag
impl RefUnwindSafe for AccountTag
impl Send for AccountTag
impl Sync for AccountTag
impl Unpin for AccountTag
impl UnwindSafe for AccountTag
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> 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> 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