#size #constant #generate #const #macro #macro-derive #foo-bar

macro size_of_const_macro

Macro for generating the constant of a type's size

1 unstable release

0.1.0 Mar 27, 2024

#344 in Procedural macros

Download history 104/week @ 2024-03-27 14/week @ 2024-04-03

118 downloads per month

MIT/Apache

12KB
215 lines

size_of_const_macro

Provides the SizeOf derive macro for generating a constant of the type's size. Not designed to work on types with generics.
The MSRV is 1.56.

Example

Derive it on your object declaration.

use size_of_const_macro::SizeOf;

#[derive(SizeOf)]
struct FooBar {
	short: u16,
	long: u32,
}

fn main() {
	assert_eq!(core::mem::size_of::<FooBar>(), SIZE_OF_FOO_BAR);
}

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in size_of_const_macro by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.4–0.9MB
~20K SLoC