spl-pod 0.7.3

Solana Program Library Plain Old Data (Pod)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Crate containing `Pod` types and `bytemuck` utilities used in SPL

pub mod bytemuck;
pub mod error;
pub mod list;
pub mod option;
pub mod optional_keys;
pub mod pod_length;
pub mod primitives;
pub mod slice;

// Re-export the conversion macro (replaces the old #[macro_export] definition)
pub use solana_zero_copy::impl_int_conversion;

// Export current sdk types for downstream users building with a different sdk
// version
pub use {solana_program_error, solana_program_option, solana_pubkey};