use bmbp_http_type::{PageData, RespVo}; #[test] fn test_resp() { let resp = RespVo::::new(0, "success".to_string(), Some("hello world".to_string())); let resp2 = RespVo::>::new(0, "success".to_string(), Some(vec!["ddd".to_string()])); let resp3 = RespVo::>>::new(0, "success".to_string(), Some(PageData::default())); }