facet_core/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![warn(missing_docs)]
3#![doc = include_str!("../README.md")]
4
5// Opaque pointer utilities
6mod opaque;
7pub use opaque::*;
8
9// Specialization utilities
10pub mod spez;
11
12// Core trait definitions
13mod _trait;
14pub use _trait::*;
15
16// Const type Id
17mod typeid;
18pub use typeid::*;
19
20// Type definitions
21mod types;
22#[allow(unused_imports)] // wtf clippy? we're re-exporting?
23pub use types::*;