x-bow 0.2.0

Precise State Management Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use x_bow_macros::Trackable;

#[allow(dead_code)]
#[derive(Trackable)]
#[x_bow(module_prefix = crate::__private_macro_only)]
#[x_bow(remote_type = Option)]
#[track(deep)]
pub enum ImitateOption<T> {
    Some(T),
    None,
}