pub struct HoochApp { /* private fields */ }Expand description
A simple HTTP server built on the Hooch async runtime.
HoochApp listens for incoming TCP connections, processes HTTP requests through a series of middleware,
matches requests to routes, and returns serialized HTTP responses.
Implementations§
Auto Trait Implementations§
impl Freeze for HoochApp
impl !RefUnwindSafe for HoochApp
impl Send for HoochApp
impl Sync for HoochApp
impl Unpin for HoochApp
impl UnsafeUnpin for HoochApp
impl !UnwindSafe for HoochApp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more