solana-nullable 1.1.1

Solana trait for types with a reserved null value
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Types for values that can reserve a designated null value.

#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(any(feature = "borsh", test))]
extern crate alloc;

mod maybe_null;
mod nullable;
#[cfg(feature = "serde-with")]
mod serde_with;

pub use self::{maybe_null::*, nullable::*};