pub struct BinArrayBitmapExtension {
pub discriminator: [u8; 8],
pub lb_pair: Pubkey,
pub positive_bin_array_bitmap: [[u64; 8]; 12],
pub negative_bin_array_bitmap: [[u64; 8]; 12],
}Fields§
§discriminator: [u8; 8]§lb_pair: Pubkey§positive_bin_array_bitmap: [[u64; 8]; 12]Packed initialized bin array state for start_bin_index is positive
negative_bin_array_bitmap: [[u64; 8]; 12]Packed initialized bin array state for start_bin_index is negative
Implementations§
Trait Implementations§
Source§impl BorshDeserialize for BinArrayBitmapExtension
impl BorshDeserialize for BinArrayBitmapExtension
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl Clone for BinArrayBitmapExtension
impl Clone for BinArrayBitmapExtension
Source§fn clone(&self) -> BinArrayBitmapExtension
fn clone(&self) -> BinArrayBitmapExtension
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BinArrayBitmapExtension
impl Debug for BinArrayBitmapExtension
impl Eq for BinArrayBitmapExtension
Source§impl PartialEq for BinArrayBitmapExtension
impl PartialEq for BinArrayBitmapExtension
Source§fn eq(&self, other: &BinArrayBitmapExtension) -> bool
fn eq(&self, other: &BinArrayBitmapExtension) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BinArrayBitmapExtension
Source§impl<'a> TryFrom<&AccountInfo<'a>> for BinArrayBitmapExtension
impl<'a> TryFrom<&AccountInfo<'a>> for BinArrayBitmapExtension
Auto Trait Implementations§
impl Freeze for BinArrayBitmapExtension
impl RefUnwindSafe for BinArrayBitmapExtension
impl Send for BinArrayBitmapExtension
impl Sync for BinArrayBitmapExtension
impl Unpin for BinArrayBitmapExtension
impl UnsafeUnpin for BinArrayBitmapExtension
impl UnwindSafe for BinArrayBitmapExtension
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