pub trait ResponseCodeTrait { // Required methods fn code(&self) -> i64; fn message(&self) -> &'static str; }
response