#[repr(C)]pub struct LoaderV4State {
pub slot: u64,
pub authority_address_or_next_version: Pubkey,
pub status: LoaderV4Status,
}
Expand description
LoaderV4 account states
Fields§
§slot: u64
Slot in which the program was last deployed, retracted or initialized.
Address of signer which can send program management instructions when the status is not finalized. Otherwise a forwarding to the next version of the finalized program.
status: LoaderV4Status
Deployment status.
Implementations§
Source§impl LoaderV4State
impl LoaderV4State
Sourcepub const fn program_data_offset() -> usize
pub const fn program_data_offset() -> usize
Size of a serialized program account.
Trait Implementations§
Source§impl Clone for LoaderV4State
impl Clone for LoaderV4State
Source§fn clone(&self) -> LoaderV4State
fn clone(&self) -> LoaderV4State
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 LoaderV4State
impl Debug for LoaderV4State
Source§impl PartialEq for LoaderV4State
impl PartialEq for LoaderV4State
impl Copy for LoaderV4State
impl Eq for LoaderV4State
impl StructuralPartialEq for LoaderV4State
Auto Trait Implementations§
impl Freeze for LoaderV4State
impl RefUnwindSafe for LoaderV4State
impl Send for LoaderV4State
impl Sync for LoaderV4State
impl Unpin for LoaderV4State
impl UnwindSafe for LoaderV4State
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