#[repr(u64)]pub enum LoaderV4Status {
Retracted = 0,
Deployed = 1,
Finalized = 2,
}
Variants§
Retracted = 0
Program is in maintenance
Deployed = 1
Program is ready to be executed
Finalized = 2
Same as Deployed
, but can not be retracted anymore
Trait Implementations§
Source§impl Clone for LoaderV4Status
impl Clone for LoaderV4Status
Source§fn clone(&self) -> LoaderV4Status
fn clone(&self) -> LoaderV4Status
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 LoaderV4Status
impl Debug for LoaderV4Status
Source§impl PartialEq for LoaderV4Status
impl PartialEq for LoaderV4Status
impl Copy for LoaderV4Status
impl Eq for LoaderV4Status
impl StructuralPartialEq for LoaderV4Status
Auto Trait Implementations§
impl Freeze for LoaderV4Status
impl RefUnwindSafe for LoaderV4Status
impl Send for LoaderV4Status
impl Sync for LoaderV4Status
impl Unpin for LoaderV4Status
impl UnwindSafe for LoaderV4Status
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