1 2 3 4 5 6 7 8 9
use super::error::DefaultError; pub trait AppState: 'static { type Error; } impl AppState for () { type Error = DefaultError; }