1use crate::*; 2 3/// Boxed trait object for UDP responses. 4/// 5/// Can contain either text or binary response implementations. 6pub type BoxResponseTrait = 7 Box<dyn ResponseTrait<OutputText = UdpResponseText, OutputBinary = UdpResponseBinary>>;