pub trait RequestTrait {
    type Raw: RawRequest;
}

Required Associated Types§

Implementors§

source§

impl<Raw, ReqDto, Req, Resp, RespDto> RequestTrait for Request<Raw, ReqDto, Req, Resp, RespDto>
where Raw: RawRequest + Debug + 'static, ReqDto: 'static, Req: From<ReqDto> + 'static, Resp: Into<RespDto> + 'static, RespDto: 'static,

§

type Raw = Raw