miniserde-miku 0.1.23

Data structure serialization library with several opposite design goals from Serde.
Documentation
pub use alloc::borrow::Cow;
pub use alloc::boxed::Box;
pub use alloc::string::String;
pub use core::option::Option::{self, None, Some};
pub use core::result::Result::{Err, Ok};

pub use self::help::Str as str;
pub use self::help::Usize as usize;

mod help {
    pub type Str = str;
    pub type Usize = usize;
}