bon/
lib.rs

1#![doc(
2    html_logo_url = "https://bon-rs.com/bon-logo-thumb.png",
3    html_favicon_url = "https://bon-rs.com/bon-logo-medium.png"
4)]
5#![doc = include_str!("../README.md")]
6#![cfg_attr(not(feature = "std"), no_std)]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8// We mark all items from the `private` module as deprecated to signal that they are
9// implementation details and should not be used directly. Unfortunately, this triggers
10// the deprecation warnings within this crate itself everywhere we use them, so we just
11// suppress this lint for the entire crate.
12#![allow(deprecated)]
13
14// Rexport all macros from the proc-macro crate.
15pub use bon_macros::{bon, builder, map, set, Builder};
16
17/// Small utility declarative macros for creating colletions with [`Into`] conversions.
18mod collections;
19
20#[doc(hidden)]
21#[deprecated = "the items from the `bon::__` module are an implementation detail; \
22    they should not be used directly; if you found a need for this, then you are probably \
23    doing something wrong; feel free to open an issue/discussion in our GitHub repository \
24    (https://github.com/elastio/bon) or ask for help in our Discord server \
25    (https://bon-rs.com/discord)"]
26pub mod __;
27
28mod builder_state;