1use std::fmt::Debug; 2 3pub trait RequestTrait: Send + Debug { 4 type RequestResult: Sized; 5 6 fn send(&mut self) -> Self::RequestResult; 7}