zon_core 0.0.4

part of a new WIP, very incomplete async http service stack
Documentation
mod body;
mod either;
pub mod r#fn;
mod into_service;
mod middleware;
mod request;
mod response;
mod service;

pub use self::{
    body::Body,
    either::Either,
    into_service::IntoHttpService,
    middleware::HttpMiddleware,
    request::{FromRequest, FromRequestParts, Request, RequestParts},
    response::{IntoResponse, Response, ResponseParts, ToResponseParts},
    service::HttpService,
};

/// Alias for a type-erased error type.
pub type BoxError = Box<dyn std::error::Error + Send + Sync>;