#[repr(C, packed(1))]pub struct ManagerSetPauseArgs {
pub discriminant: u8,
pub meta_account_idx: u16,
pub program_account_idx: u16,
pub is_paused: u8,
}Expand description
Manager program SET_PAUSE instruction arguments (matches C struct)
Fields§
§discriminant: u8§meta_account_idx: u16§program_account_idx: u16§is_paused: u8Trait Implementations§
Source§impl Clone for ManagerSetPauseArgs
impl Clone for ManagerSetPauseArgs
Source§fn clone(&self) -> ManagerSetPauseArgs
fn clone(&self) -> ManagerSetPauseArgs
Returns a duplicate 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 ManagerSetPauseArgs
impl Debug for ManagerSetPauseArgs
impl Copy for ManagerSetPauseArgs
Auto Trait Implementations§
impl Freeze for ManagerSetPauseArgs
impl RefUnwindSafe for ManagerSetPauseArgs
impl Send for ManagerSetPauseArgs
impl Sync for ManagerSetPauseArgs
impl Unpin for ManagerSetPauseArgs
impl UnwindSafe for ManagerSetPauseArgs
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