mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add fmt::Debug impl for PipelineCall (#295)
This commit is contained in:
parent
46c3f2640e
commit
b19cb340a7
3 changed files with 15 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.0.1] - 2024-02-07
|
||||
|
||||
* Add fmt::Debug impl for PipelineCall
|
||||
|
||||
## [2.0.0] - 2024-01-09
|
||||
|
||||
* Release
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-service"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntex service"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use std::future::{poll_fn, Future};
|
||||
use std::{cell::Cell, pin::Pin, rc::Rc, task, task::Context, task::Poll};
|
||||
use std::{cell::Cell, fmt, pin::Pin, rc::Rc, task, task::Context, task::Poll};
|
||||
|
||||
use crate::{ctx::Waiters, Service, ServiceCtx};
|
||||
|
||||
|
@ -207,3 +207,12 @@ where
|
|||
slf.poll(cx)
|
||||
}
|
||||
}
|
||||
|
||||
impl<S, R> fmt::Debug for PipelineCall<S, R>
|
||||
where
|
||||
S: Service<R>,
|
||||
{
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_struct("PipelineCall").finish()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue