Struct switchboard_solana::program_id::message::LegacyMessage
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§
§impl<'a> LegacyMessage<'a>
impl<'a> LegacyMessage<'a>
pub fn new(message: Message) -> LegacyMessage<'a>
pub fn has_duplicates(&self) -> bool
pub fn is_key_called_as_program(&self, key_index: usize) -> bool
pub fn is_upgradeable_loader_present(&self) -> bool
pub fn is_upgradeable_loader_present(&self) -> bool
Inspect all message keys for the bpf upgradeable loader
pub 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§
§impl<'a> Clone for LegacyMessage<'a>
impl<'a> Clone for LegacyMessage<'a>
§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§impl<'a> Debug for LegacyMessage<'a>
impl<'a> Debug for LegacyMessage<'a>
§impl<'a> PartialEq for LegacyMessage<'a>
impl<'a> PartialEq for LegacyMessage<'a>
§fn eq(&self, other: &LegacyMessage<'a>) -> bool
fn eq(&self, other: &LegacyMessage<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for LegacyMessage<'a>
impl<'a> StructuralPartialEq for LegacyMessage<'a>
Auto Trait Implementations§
impl<'a> Freeze for LegacyMessage<'a>
impl<'a> RefUnwindSafe for LegacyMessage<'a>
impl<'a> Send for LegacyMessage<'a>
impl<'a> Sync for LegacyMessage<'a>
impl<'a> Unpin for LegacyMessage<'a>
impl<'a> UnwindSafe for LegacyMessage<'a>
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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