tcp_request/response/
type.rs

1use super::{
2    r#trait::ResponseTrait, response_binary::r#type::TcpResponseBinary,
3    response_text::r#type::TcpResponseText,
4};
5
6pub type BoxResponseTrait =
7    Box<dyn ResponseTrait<OutputText = TcpResponseText, OutputBinary = TcpResponseBinary>>;