protologic_core 11.0.0

Rust bindings for Protologic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod asyncify;

pub mod actions;
pub mod quickstate;

pub(crate) struct DangerBox<T>
{
    pub value: T,
}

unsafe impl<T> Sync for DangerBox<T> { }
unsafe impl<T> Send for DangerBox<T> { }