rstm-actors 0.1.0

This crate focuses on building concrete implementations for Turing Machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
    Appellation: handle <module>
    Created At: 2025.08.30:00:16:00
    Contrib: @FL03
*/

/// The [`Handle`] trait
pub trait Handle<T> {
    type Output;

    fn handle(&mut self, args: T) -> Self::Output;
}