typesafe-builders 0.5.0

Infallible compile-time checked builders for your structs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * SPDX-FileCopyrightText: Oliver Tale-Yazdi <oliver@tasty.limo>
 * SPDX-License-Identifier: GPL-3.0-only
 */

#![doc = include_str!(env!("README_PATH"))]
#![deny(unsafe_code)]

/// Selection of imports that "just work".
pub mod prelude {
	pub use typesafe_builders_derive::Builder;
}