pub enum UpgradeableLoaderStateType {
Uninitialized,
Buffer,
Program,
ProgramData,
}Variants§
Trait Implementations§
source§impl BorshDeserialize for UpgradeableLoaderStateType
impl BorshDeserialize for UpgradeableLoaderStateType
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl Clone for UpgradeableLoaderStateType
impl Clone for UpgradeableLoaderStateType
source§fn clone(&self) -> UpgradeableLoaderStateType
fn clone(&self) -> UpgradeableLoaderStateType
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 UpgradeableLoaderStateType
impl Debug for UpgradeableLoaderStateType
source§impl EnumExt for UpgradeableLoaderStateType
impl EnumExt for UpgradeableLoaderStateType
source§impl Hash for UpgradeableLoaderStateType
impl Hash for UpgradeableLoaderStateType
source§impl PartialEq for UpgradeableLoaderStateType
impl PartialEq for UpgradeableLoaderStateType
source§fn eq(&self, other: &UpgradeableLoaderStateType) -> bool
fn eq(&self, other: &UpgradeableLoaderStateType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for UpgradeableLoaderStateType
impl PartialOrd for UpgradeableLoaderStateType
source§fn partial_cmp(&self, other: &UpgradeableLoaderStateType) -> Option<Ordering>
fn partial_cmp(&self, other: &UpgradeableLoaderStateType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for UpgradeableLoaderStateType
impl StructuralPartialEq for UpgradeableLoaderStateType
Auto Trait Implementations§
impl Freeze for UpgradeableLoaderStateType
impl RefUnwindSafe for UpgradeableLoaderStateType
impl Send for UpgradeableLoaderStateType
impl Sync for UpgradeableLoaderStateType
impl Unpin for UpgradeableLoaderStateType
impl UnwindSafe for UpgradeableLoaderStateType
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