Struct solana_program::message::LegacyMessage
source · pub struct LegacyMessage<'a> {
pub message: Cow<'a, Message>,
pub is_writable_account_cache: Vec<bool>,
}
Fields§
§message: Cow<'a, Message>
Legacy message
is_writable_account_cache: Vec<bool>
List of boolean with same length as account_keys(), each boolean value indicates if corresponding account key is writable or not.
Implementations§
source§impl<'a> LegacyMessage<'a>
impl<'a> LegacyMessage<'a>
pub fn new(message: Message) -> Self
pub fn has_duplicates(&self) -> bool
pub fn is_key_called_as_program(&self, key_index: usize) -> bool
sourcepub fn is_upgradeable_loader_present(&self) -> bool
pub fn is_upgradeable_loader_present(&self) -> bool
Inspect all message keys for the bpf upgradeable loader
sourcepub fn account_keys(&self) -> AccountKeys<'_>
pub fn account_keys(&self) -> AccountKeys<'_>
Returns the full list of account keys.
pub fn is_writable(&self, index: usize) -> bool
Trait Implementations§
source§impl<'a> Clone for LegacyMessage<'a>
impl<'a> Clone for LegacyMessage<'a>
source§fn clone(&self) -> LegacyMessage<'a>
fn clone(&self) -> LegacyMessage<'a>
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 more