#[repr(packed(1))]pub struct VrfPoolAccountData {
pub authority: Pubkey,
pub queue: Pubkey,
pub escrow: Pubkey,
pub min_interval: u32,
pub max_rows: u32,
pub size: u32,
pub idx: u32,
pub state_bump: u8,
pub _ebuf: [u8; 135],
}
Fields§
ACCOUNTS
queue: Pubkey
§escrow: Pubkey
§min_interval: u32
§max_rows: u32
§size: u32
§idx: u32
§state_bump: u8
§_ebuf: [u8; 135]
Implementations§
source§impl VrfPoolAccountData
impl VrfPoolAccountData
sourcepub fn new<'info>(
vrf_pool_account_info: &'info AccountInfo<'_>
) -> Result<Ref<'info, VrfPoolAccountData>>
pub fn new<'info>( vrf_pool_account_info: &'info AccountInfo<'_> ) -> Result<Ref<'info, VrfPoolAccountData>>
sourcepub fn new_from_bytes(data: &[u8]) -> Result<&VrfPoolAccountData>
pub fn new_from_bytes(data: &[u8]) -> Result<&VrfPoolAccountData>
pub fn fetch(client: &RpcClient, pubkey: Pubkey) -> Result<Self, SbError>
pub async fn fetch_async( client: &RpcClient, pubkey: Pubkey ) -> Result<Self, SbError>
pub fn fetch_sync<T: SyncClient>( client: &T, pubkey: Pubkey ) -> Result<Self, SbError>
Trait Implementations§
source§impl AccountDeserialize for VrfPoolAccountData
impl AccountDeserialize for VrfPoolAccountData
source§fn try_deserialize(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize(buf: &mut &[u8]) -> Result<Self>
Deserializes previously initialized account data. Should fail for all
uninitialized accounts, where the bytes are zeroed. Implementations
should be unique to a particular account type so that one can never
successfully deserialize the data of one account type into another.
For example, if the SPL token program were to implement this trait,
it should be impossible to deserialize a
Mint
account into a token
Account
.source§fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
Deserializes account data without checking the account discriminator.
This should only be used on account initialization, when the bytes of
the account are zeroed.
source§impl Clone for VrfPoolAccountData
impl Clone for VrfPoolAccountData
source§fn clone(&self) -> VrfPoolAccountData
fn clone(&self) -> VrfPoolAccountData
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 moresource§impl Default for VrfPoolAccountData
impl Default for VrfPoolAccountData
source§impl Discriminator for VrfPoolAccountData
impl Discriminator for VrfPoolAccountData
const DISCRIMINATOR: [u8; 8] = _
fn discriminator() -> [u8; 8]
impl Copy for VrfPoolAccountData
impl Pod for VrfPoolAccountData
impl ZeroCopy for VrfPoolAccountData
Auto Trait Implementations§
impl RefUnwindSafe for VrfPoolAccountData
impl Send for VrfPoolAccountData
impl Sync for VrfPoolAccountData
impl Unpin for VrfPoolAccountData
impl UnwindSafe for VrfPoolAccountData
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.