1use crate::*; 2 3/// Binary data for HTTP response. 4pub type ResponseData = Vec<u8>; 5 6/// Result type for response operations. 7pub type ResponseResult = Result<(), ResponseError>;