Macro for for generating bitfields from structs and enum bitflags for defining packed binary schemas in low-level systems (e.g. embedded development or emulators)
#![no_std]#![warn(incomplete_features)]/// Creates a bitfield from the attributed struct.
pubusebitfields_impl::bitfield;/// Creates a bitfield from the attributed enum.
pubusebitfields_impl::bitflag;