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