#[repr(C)]pub struct StoreIndexer {
pub key: Key,
pub store: Pubkey,
pub page: u64,
pub auction_caches: Vec<Pubkey>,
}Fields§
§key: Key§store: Pubkey§page: u64§auction_caches: Vec<Pubkey>Implementations§
Source§impl StoreIndexer
impl StoreIndexer
pub fn from_account_info( a: &AccountInfo<'_>, ) -> Result<StoreIndexer, ProgramError>
Trait Implementations§
Source§impl BorshDeserialize for StoreIndexerwhere
Key: BorshDeserialize,
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
impl BorshDeserialize for StoreIndexerwhere
Key: BorshDeserialize,
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
Source§impl BorshSerialize for StoreIndexerwhere
Key: BorshSerialize,
Pubkey: BorshSerialize,
u64: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
impl BorshSerialize for StoreIndexerwhere
Key: BorshSerialize,
Pubkey: BorshSerialize,
u64: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
Source§impl Clone for StoreIndexer
impl Clone for StoreIndexer
Source§fn clone(&self) -> StoreIndexer
fn clone(&self) -> StoreIndexer
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 moreAuto Trait Implementations§
impl Freeze for StoreIndexer
impl RefUnwindSafe for StoreIndexer
impl Send for StoreIndexer
impl Sync for StoreIndexer
impl Unpin for StoreIndexer
impl UnwindSafe for StoreIndexer
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<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