Enum solana_sdk::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.
Fields of Buffer
Authority address
An Program account.
Fields of Program
programdata_address: Pubkey
Address of the ProgramData account.
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
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<UpgradeableLoaderState, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<UpgradeableLoaderState, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
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 !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
pub default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
pub default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self