Expand description
An async multi-threaded web framework for people who appreciate simplicity.
Documentation is sparse at the moment, but the code is well-commented for the most part.
If you’re interested in contributing, helping with documentation is a great starting point.
Check out the official examples to see how to use Via.
Re-exports§
pub use middleware::ErrorBoundary;pub use middleware::Middleware;pub use middleware::Next;pub use middleware::Result;pub use request::Request;pub use response::Response;pub use http;
Modules§
Structs§
- An error type that can act as a specialized version of a
ResponseBuilder. - Serve an
Appover HTTP or HTTPS.
Functions§
- Constructs a new
Appwith the providedstateargument.
Type Aliases§
- A type alias for a boxed
Errorthat isSend + Sync.