pud 1.1.0

Generate typed, composable, no-std-friendly modifications (“puds”) for Rust structs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg(test)]
#![expect(
	clippy::blanket_clippy_restriction_lints,
	clippy::arbitrary_source_item_ordering,
	reason = "_"
)]

#[test]
fn ui_pass() {
	trybuild::TestCases::new().pass("tests/ui/pass/*.rs");
}

#[test]
fn ui_fail() {
	trybuild::TestCases::new().compile_fail("tests/ui/fail/*.rs");
}