pub struct AppendVecStoredAccountMeta<'append_vec> {
pub meta: &'append_vec StoredMeta,
pub account_meta: &'append_vec AccountMeta,
/* private fields */
}
Expand description
References to account data stored elsewhere. Getting an Account
requires cloning
(see StoredAccountMeta::clone_account()
).
Fields§
§meta: &'append_vec StoredMeta
§account_meta: &'append_vec AccountMeta
account data
Implementations§
Source§impl<'append_vec> AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> AppendVecStoredAccountMeta<'append_vec>
Trait Implementations§
Source§impl<'append_vec> Debug for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> Debug for AppendVecStoredAccountMeta<'append_vec>
Source§impl<'append_vec> PartialEq for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> PartialEq for AppendVecStoredAccountMeta<'append_vec>
Source§fn eq(&self, other: &AppendVecStoredAccountMeta<'append_vec>) -> bool
fn eq(&self, other: &AppendVecStoredAccountMeta<'append_vec>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'append_vec> ReadableAccount for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> ReadableAccount for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> Eq for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> StructuralPartialEq for AppendVecStoredAccountMeta<'append_vec>
Auto Trait Implementations§
impl<'append_vec> Freeze for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> RefUnwindSafe for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> Send for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> Sync for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> Unpin for AppendVecStoredAccountMeta<'append_vec>
impl<'append_vec> UnwindSafe for AppendVecStoredAccountMeta<'append_vec>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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