resource_bound/lib.rs
1
2//!Enforces compile-time resource constraints on structs.
3//! ---
4//! # See the crate README for details and examples.
5//!
6
7///derive implementation found in `resource_bound_derive`
8pub use resource_bound_derive::ResourceBound;
9
10///Stack only explicit allow list
11pub use resource_bound_core::StackOnly;