pub struct AddressMapIndexes {
pub writable: Vec<u8>,
pub readonly: Vec<u8>,
}
Expand description
Indexes that are mapped to addresses using an on-chain address map for succinctly loading readonly and writable accounts.
Fields§
§writable: Vec<u8>
§readonly: Vec<u8>
Trait Implementations§
Source§impl AbiExample for AddressMapIndexes
impl AbiExample for AddressMapIndexes
Source§impl Clone for AddressMapIndexes
impl Clone for AddressMapIndexes
Source§fn clone(&self) -> AddressMapIndexes
fn clone(&self) -> AddressMapIndexes
Returns a duplicate 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 AddressMapIndexes
impl Debug for AddressMapIndexes
Source§impl Default for AddressMapIndexes
impl Default for AddressMapIndexes
Source§fn default() -> AddressMapIndexes
fn default() -> AddressMapIndexes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressMapIndexes
impl<'de> Deserialize<'de> for AddressMapIndexes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AddressMapIndexes
impl PartialEq for AddressMapIndexes
Source§impl Serialize for AddressMapIndexes
impl Serialize for AddressMapIndexes
impl Eq for AddressMapIndexes
impl StructuralPartialEq for AddressMapIndexes
Auto Trait Implementations§
impl Freeze for AddressMapIndexes
impl RefUnwindSafe for AddressMapIndexes
impl Send for AddressMapIndexes
impl Sync for AddressMapIndexes
impl Unpin for AddressMapIndexes
impl UnwindSafe for AddressMapIndexes
Blanket Implementations§
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
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