Enum solana_program::bpf_loader_upgradeable::UpgradeableLoaderState [−][src]
pub enum UpgradeableLoaderState { Uninitialized, Buffer { authority_address: Option<Pubkey>, }, Program { programdata_address: Pubkey, }, ProgramData { slot: u64, upgrade_authority_address: Option<Pubkey>, }, }
Expand description
Upgradeable loader account states
Variants
Account is not initialized.
A Buffer account.
Show fields
Fields of Buffer
Authority address
An Program account.
Show fields
Fields of Program
programdata_address: Pubkey
Address of the ProgramData account.
Show fields
Fields of ProgramData
Implementations
Length of an buffer account’s data.
Offset into the ProgramData account’s data of the program bits.
Length of an executable account’s data.
Length of a ProgramData account’s data.
Offset into the ProgramData account’s data of the program bits.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpgradeableLoaderState
impl Send for UpgradeableLoaderState
impl Sync for UpgradeableLoaderState
impl Unpin for UpgradeableLoaderState
impl UnwindSafe for UpgradeableLoaderState
Blanket Implementations
Mutably borrows from an owned value. Read more