diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-05-10 16:23:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 16:23:26 +0200 |
commit | 29aa988476ee968ea00f9c026ae276d72c316476 (patch) | |
tree | b69fc5a4094b9b2df3f9edc3e66b182413e3aa6c /ext/http/request_properties.rs | |
parent | 234cef982c12a6c46aa8ba3787920f7b9a856be3 (diff) |
refactor(core): http_next generic over request extractor (#19071)
Diffstat (limited to 'ext/http/request_properties.rs')
-rw-r--r-- | ext/http/request_properties.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/http/request_properties.rs b/ext/http/request_properties.rs index 7a7f5219c..9c0c0e815 100644 --- a/ext/http/request_properties.rs +++ b/ext/http/request_properties.rs @@ -70,9 +70,9 @@ pub trait HttpPropertyExtractor { ) -> HttpRequestProperties; } -pub struct DefaultHttpRequestProperties {} +pub struct DefaultHttpPropertyExtractor {} -impl HttpPropertyExtractor for DefaultHttpRequestProperties { +impl HttpPropertyExtractor for DefaultHttpPropertyExtractor { fn get_network_stream_for_rid( state: &mut OpState, rid: ResourceId, |