mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
wip
This commit is contained in:
parent
415d4658dd
commit
aec2908c96
1 changed files with 2 additions and 1 deletions
|
@ -144,9 +144,10 @@ impl<S> Drop for Pipeline<S> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<S> fmt::Debug for PipelineState<S> {
|
||||
impl<S: fmt::Debug> fmt::Debug for PipelineState<S> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_struct("PipelineState")
|
||||
.field("svc", &self.svc)
|
||||
.field("waiters", &self.waiters.get().len())
|
||||
.finish()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue