3 releases (breaking)

0.3.0 Jun 29, 2023
0.2.0 Jun 29, 2023
0.1.0 Apr 26, 2023

#386 in Memory management

Download history 10/week @ 2024-02-21 11/week @ 2024-02-28 2/week @ 2024-03-06 3/week @ 2024-03-13 19/week @ 2024-03-27 45/week @ 2024-04-03

64 downloads per month

MIT license

6KB

memory-layout

crates.io docs.rs CI

memory-layout is a minimal no_std compatible crate that allows you to specify the memory layout of a struct, similarly to C#'s [StructLayout(LayoutKind.Explicit)].

Docs

https://docs.rs/memory-layout/

Features

  • Specify the offset a field should have in a struct.
  • Offsets are checked to be valid at compile time.
  • no_std compatible.

Example

use memory_layout::memory_layout;

#[memory_layout]
pub struct Example {
  #[field_offset(0x00)]
  a: i32,
  #[field_offset(0x10)]
  b: u64,
  #[field_offset(0x20)]
  c: f32
}

Will expand to:

pub struct Example {
  #[doc(hidden)]
  __pad0: [u8; 0usize],
  a:      i32,
  #[doc(hidden)]
  __pad1: [u8; 16usize - ::core::mem::size_of::<i32>()],
  b:      u64,
  #[doc(hidden)]
  __pad2: [u8; 8usize - ::core::mem::size_of::<u64>()],
  c:      f32
}

Caveats

  • Fields have to be defined in ascending order by the specified offset.
  • #[memory_layout] attribute has to be defined before any derive attributes.

Comparable projects

struct_layout

This project has a similar goal to this crate, replicating C#'s [StructLayout(LayoutKind.Explicit)]. The key difference is that struct_layout uses an internal array that can be accessed using methods like get_<field_name> and set_<field_name> while this crate aligns the fields themselves.

Dependencies

~3MB
~57K SLoC