pub struct ProposalAccountMeta {
pub pubkey: Pubkey,
pub is_signer: bool,
pub is_writable: bool,
}Expand description
Account metadata used to define Instructions
Fields§
§pubkey: PubkeyAn account’s public key
is_signer: boolTrue if an Instruction requires a Transaction signature matching pubkey.
is_writable: boolTrue if the pubkey can be loaded as a read-write account.
Trait Implementations§
Source§impl BorshSerialize for ProposalAccountMeta
impl BorshSerialize for ProposalAccountMeta
Source§impl Clone for ProposalAccountMeta
impl Clone for ProposalAccountMeta
Source§fn clone(&self) -> ProposalAccountMeta
fn clone(&self) -> ProposalAccountMeta
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 ProposalAccountMeta
impl Debug for ProposalAccountMeta
Source§impl PartialEq for ProposalAccountMeta
impl PartialEq for ProposalAccountMeta
impl Copy for ProposalAccountMeta
impl StructuralPartialEq for ProposalAccountMeta
Auto Trait Implementations§
impl Freeze for ProposalAccountMeta
impl RefUnwindSafe for ProposalAccountMeta
impl Send for ProposalAccountMeta
impl Sync for ProposalAccountMeta
impl Unpin for ProposalAccountMeta
impl UnwindSafe for ProposalAccountMeta
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