pub enum ProgramState {
Uninitialized,
LookupTable(LookupTableMeta),
}
Expand description
Program account states
Variants§
Uninitialized
Account is not initialized.
LookupTable(LookupTableMeta)
Initialized LookupTable
account.
Trait Implementations§
source§impl AbiEnumVisitor for ProgramState
impl AbiEnumVisitor for ProgramState
fn visit_for_abi(&self, digester: &mut AbiDigester) -> DigestResult
source§impl AbiExample for ProgramState
impl AbiExample for ProgramState
source§impl Clone for ProgramState
impl Clone for ProgramState
source§fn clone(&self) -> ProgramState
fn clone(&self) -> ProgramState
Returns a copy 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 ProgramState
impl Debug for ProgramState
source§impl<'de> Deserialize<'de> for ProgramState
impl<'de> Deserialize<'de> for ProgramState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ProgramState> for ProgramState
impl PartialEq<ProgramState> for ProgramState
source§fn eq(&self, other: &ProgramState) -> bool
fn eq(&self, other: &ProgramState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProgramState
impl Serialize for ProgramState
impl Eq for ProgramState
impl StructuralEq for ProgramState
impl StructuralPartialEq for ProgramState
Auto Trait Implementations§
impl RefUnwindSafe for ProgramState
impl Send for ProgramState
impl Sync for ProgramState
impl Unpin for ProgramState
impl UnwindSafe for ProgramState
Blanket Implementations§
source§impl<T> AbiEnumVisitor for Twhere
T: Serialize + AbiExample + ?Sized,
impl<T> AbiEnumVisitor for Twhere T: Serialize + AbiExample + ?Sized,
default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
source§impl<T> AbiEnumVisitor for Twhere
T: Serialize + ?Sized,
impl<T> AbiEnumVisitor for Twhere T: Serialize + ?Sized,
default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.