free-launch 0.2.9

A simple fuzzy launcher written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
/// An object to represnt the result of invoking an action
///
/// Besides signaling success or failure, it holds output data that can be passed into the next command.
pub(crate) enum ActionResult {
    Success,
    OutputText(String),
    // TODO change this to an error type wrapper
    Error(String),
}