Struct golana_loader::GolBytecode
source · #[repr(C)]pub struct GolBytecode {
pub handle: [u8; 32],
pub authority: Pubkey,
pub finalized: usize,
pub content_size: usize,
pub content: [u8; 8],
}
Fields§
§handle: [u8; 32]
§finalized: usize
§content_size: usize
§content: [u8; 8]
Trait Implementations§
source§impl AccountDeserialize for GolBytecode
impl AccountDeserialize for GolBytecode
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 GolBytecode
impl Clone for GolBytecode
source§fn clone(&self) -> GolBytecode
fn clone(&self) -> GolBytecode
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 Discriminator for GolBytecode
impl Discriminator for GolBytecode
const DISCRIMINATOR: [u8; 8] = _
fn discriminator() -> [u8; 8]
impl Copy for GolBytecode
impl Pod for GolBytecode
impl ZeroCopy for GolBytecode
Auto Trait Implementations§
impl RefUnwindSafe for GolBytecode
impl Send for GolBytecode
impl Sync for GolBytecode
impl Unpin for GolBytecode
impl UnwindSafe for GolBytecode
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> 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
.source§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
.