Struct clockwork_utils::thread::SerializableAccount
source · pub struct SerializableAccount {
pub pubkey: Pubkey,
pub is_signer: bool,
pub is_writable: bool,
}
Expand description
Account metadata needed to execute an instruction on Solana.
Fields§
§pubkey: Pubkey
An account’s public key
is_signer: bool
True if an Instruction requires a Transaction signature matching pubkey
.
is_writable: bool
True if the pubkey
can be loaded as a read-write account.
Implementations§
Trait Implementations§
source§impl BorshDeserialize for SerializableAccountwhere
Pubkey: BorshDeserialize,
bool: BorshDeserialize,
impl BorshDeserialize for SerializableAccountwhere Pubkey: BorshDeserialize, bool: BorshDeserialize,
source§impl BorshSchema for SerializableAccountwhere
Pubkey: BorshSchema,
bool: BorshSchema,
impl BorshSchema for SerializableAccountwhere Pubkey: BorshSchema, bool: BorshSchema,
source§fn declaration() -> Declaration
fn declaration() -> Declaration
Get the name of the type without brackets.
source§fn add_definitions_recursively(
definitions: &mut HashMap<Declaration, Definition>
)
fn add_definitions_recursively( definitions: &mut HashMap<Declaration, Definition> )
Recursively, using DFS, add type definitions required for this type. For primitive types
this is an empty map. Type definition explains how to serialize/deserialize a type.
§fn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
fn add_definition( declaration: String, definition: Definition, definitions: &mut HashMap<String, Definition, RandomState> )
Helper method to add a single type definition to the map.
fn schema_container() -> BorshSchemaContainer
source§impl BorshSerialize for SerializableAccountwhere
Pubkey: BorshSerialize,
bool: BorshSerialize,
impl BorshSerialize for SerializableAccountwhere Pubkey: BorshSerialize, bool: BorshSerialize,
source§impl Clone for SerializableAccount
impl Clone for SerializableAccount
source§fn clone(&self) -> SerializableAccount
fn clone(&self) -> SerializableAccount
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 SerializableAccount
impl Debug for SerializableAccount
source§impl Hash for SerializableAccount
impl Hash for SerializableAccount
source§impl PartialEq<SerializableAccount> for SerializableAccount
impl PartialEq<SerializableAccount> for SerializableAccount
source§fn eq(&self, other: &SerializableAccount) -> bool
fn eq(&self, other: &SerializableAccount) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.