[go: up one dir, main page]

Type Alias QueryResult

Source
pub type QueryResult = Result<QueryMap, UrlDecodingError>;
Expand description

Result type for decoding query parameters.

Aliased Type§

pub enum QueryResult {
    Ok(HashMap<String, Vec<String>>),
    Err(UrlDecodingError),
}

Variants§

§1.0.0

Ok(HashMap<String, Vec<String>>)

Contains the success value

§1.0.0

Err(UrlDecodingError)

Contains the error value