reflect_to 0.1.5

Run-time type reflection and conversion
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod reflect_to;
pub use reflect_to::*;

// Re-export `Reflect` macro
pub use reflect_macro::Reflect;

#[cfg(feature = "to_typescript")]
mod to_typescript;
#[cfg(feature = "to_typescript")]
pub use to_typescript::{ToTypeScriptError, ToTypescript};

#[cfg(feature = "to_python")]
mod to_python;
#[cfg(feature = "to_python")]
pub use to_python::{ToPython, ToPythonError};