heapswap_macros 0.0.1

Heapswap's macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Heapswap Macros

This exports: 

## sled_zero_copy
A procedural macro that expands:
```rust
#[sled_zero_copy]
```
into:
```rust
#[derive(zerocopy_derive::FromBytes, zerocopy_derive::FromZeroes, zerocopy_derive::AsBytes, zerocopy_derive::Unaligned)]
#[repr(C)]
```rust
for use with Sled's zero-copy storage capabilities.