Skip to content

Commit dc27043

Browse files
tottotoseanmonstar
authored andcommittedApr 15, 2024·
feat(ext): implement From ReasonPhrase for Bytes
1 parent 6aee2e6 commit dc27043

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/ext/h1_reason_phrase.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ impl TryFrom<Bytes> for ReasonPhrase {
107107
}
108108
}
109109

110-
impl Into<Bytes> for ReasonPhrase {
111-
fn into(self) -> Bytes {
112-
self.0
110+
impl From<ReasonPhrase> for Bytes {
111+
fn from(reason: ReasonPhrase) -> Self {
112+
reason.0
113113
}
114114
}
115115

1 commit comments

Comments
 (1)

github-actions[bot] commented on Apr 15, 2024

@github-actions[bot]

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'end_to_end'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: dc27043 Previous: 6aee2e6 Ratio
http2_parallel_x10_req_10kb_100_chunks_adaptive_window 24019781 ns/iter (± 9319904) 7845818 ns/iter (± 103057) 3.06

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.