pub struct SendHttpOk {
pub request: Request<Vec<u8>>,
pub response: Response<Vec<u8>>,
pub keep_alive: bool,
}
Expand description
The coroutine has successfully terminated its execution.
Fields§
§request: Request<Vec<u8>>
The initial sent request.
response: Response<Vec<u8>>
The response received.
keep_alive: bool
Is the connection still alive? If not, then a new connection needs to be established.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for SendHttpOk
impl !RefUnwindSafe for SendHttpOk
impl Send for SendHttpOk
impl Sync for SendHttpOk
impl Unpin for SendHttpOk
impl !UnwindSafe for SendHttpOk
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