reqrio 0.3.0-alpha2

A lightweight, high-performance, fingerprint-based HTTP request library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::error::Error;
use std::fmt::Display;

#[derive(Debug)]
pub enum FormError {
    GetFilenameError,
}

impl Display for FormError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self { FormError::GetFilenameError => write!(f, "get filename error"), }
    }
}

impl Error for FormError {}