pub struct Server { /* private fields */ }
Expand description
Core server implementation that processes HTTP requests.
The server is responsible for:
- Listening for incoming connections
- Routing requests to appropriate handlers
- Managing connection lifecycle
- Error handling and logging
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Server
impl !RefUnwindSafe for Server
impl Send for Server
impl Sync for Server
impl Unpin for Server
impl !UnwindSafe for Server
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