modular-bitfield-ordering 0.1.0

Provide u8be..u128be, u8le..u128le for modular-bitfield
Documentation
  • Coverage
  • 0%
    0 out of 11 items documented0 out of 10 items with examples
  • Size
  • Source code size: 16.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 528.05 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • chabapok/modular-bitfield-ordering
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • chabapok

Modular bitfield ordering types

This crate provide some types to use with the modular-bitfield crate:

For big endian layout: u8be, u16be, u32be, u64be, u128be
For little endian layout: u8le, u16le, u32le, u64le, u128le

Example


#[bitfield]
struct Foo {
    a: u16be,
    b: u32le,
}