wae-https 0.0.1

WAE HTTPS - HTTP/HTTPS 服务核心模块,构建器模式、中间件、统一响应
Documentation
1
2
3
4
5
6
7
use wae_https::extract::*;

#[test]
fn test_extractor_error_display() {
    let err = ExtractorError::Custom("test error".to_string());
    assert_eq!(format!("{}", err), "Extractor error: test error");
}