dyn_compatible 0.1.4

Dyn compatible marker
Documentation
//! Dyn compatible marker.
//!
//! *The author of this crate is not good at English.*
//! *Forgive me if the document is hard to read.*

#![warn(missing_docs)]
#![cfg_attr(not(test), no_std)]

pub mod prelude;

pub use dyn_compatible_macro::dyn_compatible;

pub use not_dyn::*;

mod not_dyn;

#[doc(hidden)]
#[path = "../tests_compile_fail/mod.rs"]
mod tests_compile_fail;