Skip to main content

primitives/prelude/traits/
process.rs

1use super::{Disposable, Pauseable, Updateable};
2
3/// The Process represents the smallest atom of the framework.
4/// 
5/// Many managers will implement this interface.
6///
7pub trait Process: Updateable + Disposable + Pauseable {}