rust-web-server 17.62.0

A dependency-minimal Rust web platform: HTTP/1.1, HTTP/2, and HTTP/3 server, reverse proxy, and application framework with routing, middleware (auth, rate limiting, tracing), an async ORM, background jobs, object storage, and a mailer. Runs as a zero-code config-driven proxy or as a library crate. No third-party HTTP dependencies.
Documentation
use crate::json::array::boolean::JSONArrayOfBooleans;

#[test]
fn json_to_vector() {
    let json_array = "[true, false]".to_string();

    let boxed_parse = JSONArrayOfBooleans::parse_as_list_bool(json_array);
    if boxed_parse.is_err() {
        // handle error
    }


    let _list : Vec<bool> = boxed_parse.unwrap();

}

#[test]
fn vector_to_json() {
    let json_array: Vec<bool> = vec![true, false];

    let result = JSONArrayOfBooleans::to_json_from_list_bool(&json_array);
    if result.is_err() {
        // handle error
    }

    let _json_array = result.unwrap();
}