pub trait ResponseExtractor {
type Output;
// Required method
fn extract(
self,
event: &HttpCallResponse,
buffers: &dyn ResponseBuffers,
) -> Self::Output;
}Expand description
A low-level trait for extracting a Response and convert it to a
ResponseExtractor::Output type.
Required Associated Types§
Required Methods§
Sourcefn extract(
self,
event: &HttpCallResponse,
buffers: &dyn ResponseBuffers,
) -> Self::Output
fn extract( self, event: &HttpCallResponse, buffers: &dyn ResponseBuffers, ) -> Self::Output
Extracts the Response from their low-level components