#[repr(C)]pub struct ChangePublicKeyArgs {
pub new_public_key: [u8; 64],
pub signature: [u8; 64],
pub recovery_id: u8,
}
Fields§
§new_public_key: [u8; 64]
§signature: [u8; 64]
§recovery_id: u8
Trait Implementations§
Source§impl BorshSerialize for ChangePublicKeyArgs
impl BorshSerialize for ChangePublicKeyArgs
Source§impl Clone for ChangePublicKeyArgs
impl Clone for ChangePublicKeyArgs
Source§fn clone(&self) -> ChangePublicKeyArgs
fn clone(&self) -> ChangePublicKeyArgs
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 ChangePublicKeyArgs
impl Debug for ChangePublicKeyArgs
Source§impl PartialEq for ChangePublicKeyArgs
impl PartialEq for ChangePublicKeyArgs
impl StructuralPartialEq for ChangePublicKeyArgs
Auto Trait Implementations§
impl Freeze for ChangePublicKeyArgs
impl RefUnwindSafe for ChangePublicKeyArgs
impl Send for ChangePublicKeyArgs
impl Sync for ChangePublicKeyArgs
impl Unpin for ChangePublicKeyArgs
impl UnwindSafe for ChangePublicKeyArgs
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