capsula-core 0.3.0

The core library for Capsula.
Documentation
1
2
3
4
5
6
7
8
9
use serde_json::Value;

pub trait Captured {
    fn to_json(&self) -> Value;

    fn abort_requested(&self) -> bool {
        false
    }
}