simbld_http/traits/
get_code_trait.rs

1// Common trait to convert an enum to u16
2pub trait GetCode {
3    fn get_code(&self) -> u16;
4}