Gemention/src/validation/mod.rs

8 lines
133 B
Rust

pub(crate) mod c2s;
pub trait Validation {
type Error;
fn validate(self) -> Result<Self, Self::Error> where Self: Sized;
}