cell-map-macro 0.2.0

Macros for the cell-map crate
Documentation
1
2
3
4
5
6
7
8
9
//! Test that the Layer trait can be derived for enums

use cell_map::Layer;

#[derive(Layer, Clone)]
pub enum MyLayer {
    Height,
    Gradient,
}