pub struct Pipe<Front: SocketHandler, L: ListenerHandler> {
pub frontend: Front,
pub front_buf: Checkout,
pub cluster_id: Option<String>,
pub backend_id: Option<String>,
pub request_id: Ulid,
pub websocket_context: Option<String>,
pub front_readiness: Readiness,
pub back_readiness: Readiness,
pub log_ctx: String,
pub front_timeout: Option<TimeoutContainer>,
pub back_timeout: Option<TimeoutContainer>,
pub listener: Rc<RefCell<L>>,
/* private fields */
}
Executes the destructor for this type.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.