You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`raw_struct` is a Rust procedural macro for easily declaring C-style structs that reference local or external memory, based on your memory implementation. It generates appropiate getter methods for easy access. This crate has support for `no_std` environments.
9
+
`raw_struct` is a Rust procedural macro for easily declaring C-style structs that reference local or external memory, based on your memory implementation.
10
+
It generates appropiate getter methods for easy access.
11
+
This crate has support for `no_std` environments.
12
+
13
+
## Features
14
+
15
+
Supported features:
16
+
17
+
- Zero overhead memory access
18
+
- Dynamic member offsets
19
+
- Generic parameters on structs including dynamic memory layout (see dyn_memory example)
0 commit comments