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; }