aboutsummaryrefslogtreecommitdiff
path: root/src/private/mod.rs
blob: 8b20333330c2e76a759c6f7a29354a3d975e2858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains items that's not in the public API but is used by the
//! library user with the expansions of the macros in the syrette_macros crate.

pub mod cast;

pub extern crate linkme;

#[cfg(feature = "factory")]
pub mod any_factory;

#[cfg(feature = "factory")]
pub mod factory;

#[cfg(feature = "factory")]
pub mod castable_factory;