pub enum Http1ServerResponseEvent {
NoResponseExpected,
Response(HTTP1Response),
}Variants§
NoResponseExpected
Use this for protocol upgrades
Response(HTTP1Response)
Use this for request responses
Auto Trait Implementations§
impl Freeze for Http1ServerResponseEvent
impl RefUnwindSafe for Http1ServerResponseEvent
impl Send for Http1ServerResponseEvent
impl Sync for Http1ServerResponseEvent
impl Unpin for Http1ServerResponseEvent
impl UnwindSafe for Http1ServerResponseEvent
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