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