1pub trait RequestResponse { 2 type Response: ?Sized; 3 fn num_expected_responses(&self) -> u32; 4 fn verify_response(&self, response: &Self::Response) -> bool; 5}