Sign in
apache
/
iggy
/
refs/heads/vsr_message_headers
/
.
/
sdk
/
src
/
validatable.rs
blob: ae2d9caa6f8502c7aefcb702e911f90d5a5c6c6f [
file
]
/// A trait for validating a type.
pub
trait
Validatable
<
E
>
{
fn
validate
(&
self
)
->
Result
<(),
E
>;
}