dyn_std 0.3.3

Dynamic (object-safe) version of std traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Dynamic (object-safe) version of std traits.
//! 
//! See: [dyn_derive](https://crates.io/crates/dyn_derive)

mod core;

pub mod any;
pub mod inst;
pub mod map;

pub use any::*;
pub use core::*;
pub use inst::*;