pub trait Validator<T> { // Required method fn validate(&self, value: &T) -> Result<(), String>; }
A trait for performing prompt validation.