#[repr(C)]pub struct InitializeAdminArgs {
pub public_key: [u8; 64],
pub contract: Pubkey,
}
Fields§
§public_key: [u8; 64]
§contract: Pubkey
Trait Implementations§
Source§impl BorshSerialize for InitializeAdminArgs
impl BorshSerialize for InitializeAdminArgs
Source§impl Clone for InitializeAdminArgs
impl Clone for InitializeAdminArgs
Source§fn clone(&self) -> InitializeAdminArgs
fn clone(&self) -> InitializeAdminArgs
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InitializeAdminArgs
impl Debug for InitializeAdminArgs
Source§impl PartialEq for InitializeAdminArgs
impl PartialEq for InitializeAdminArgs
impl StructuralPartialEq for InitializeAdminArgs
Auto Trait Implementations§
impl Freeze for InitializeAdminArgs
impl RefUnwindSafe for InitializeAdminArgs
impl Send for InitializeAdminArgs
impl Sync for InitializeAdminArgs
impl Unpin for InitializeAdminArgs
impl UnwindSafe for InitializeAdminArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more