Provides a macro to allows creation of a simple byte-array backed structs. Such struct has a predefined size and allocated on stack.

Usage

Dependency

[dependencies] byte-array-struct = "0.2"

Example

`` // create struct named Address backed by [u8; 24] // basically a shortcut topub struct Address([u8; 24]);` bytearraystruct!( pub struct Address(24); );

impl Address { // any additional functionality for Address type }

// passed as a value on stack fn send(to: Address) { // ... }

fn main() { //accepts hex, which can also be prefixed with 0x let foo = Address::from_str("0123456789abcdef0123456789abcdef0123456789abcdef").unwrap();

send(foo); } ```

Provides

Macro provides implementation for following traits:

Features