pub trait StateFilter<State, Input> {
type ValidOutput;
type Error: Error;
// Required method
fn filter(
state: &State,
value: Input,
) -> Result<Self::ValidOutput, Self::Error>;
}Required Associated Types§
type ValidOutput
type Error: Error
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.