spl_pod/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Crate containing `Pod` types and `bytemuck` utils used in SPL

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

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