tcp_request/response/
type.rs

1use crate::*;
2
3/// Boxed trait object for response operations with text and binary output types.
4pub type BoxResponseTrait =
5    Box<dyn ResponseTrait<OutputText = TcpResponseText, OutputBinary = TcpResponseBinary>>;