pub struct HttpProbe { /* private fields */ }Expand description
Executes HTTP requests using a shared reqwest::Client.
The client is configured with connection pooling and keep-alive enabled by default.
Construct once and reuse across multiple execute calls to amortise connection setup.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpProbe
impl !RefUnwindSafe for HttpProbe
impl Send for HttpProbe
impl Sync for HttpProbe
impl Unpin for HttpProbe
impl UnsafeUnpin for HttpProbe
impl !UnwindSafe for HttpProbe
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