Crates.io | blair_mountain |
lib.rs | blair_mountain |
version | 0.3.0 |
source | src |
created_at | 2020-02-21 18:31:38.008322 |
updated_at | 2020-02-23 17:46:35.868996 |
description | Union types in release mode with debug assertions in debug mode |
homepage | |
repository | https://github.com/Restioson/blair_mountain |
max_upload_size | |
id | 211261 |
size | 26,197 |
A crate that exports one macro (union
) to create types that are enums with checks in debug mode, but unions in release mode. In debug mode, invalid access will panic, while in release
they will not. It is therefore unsafe. Fields should be treated as fields of unions (i.e
no non-Copy
types allowed, etc). Please test all code generated with blair_mountain
in
both release and debug modes.