Add fmt::Debug impl for PipelineCall (#295)

This commit is contained in:
Nikolay Kim 2024-02-07 11:29:35 +01:00 committed by GitHub
parent 46c3f2640e
commit b19cb340a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [2.0.1] - 2024-02-07
* Add fmt::Debug impl for PipelineCall
## [2.0.0] - 2024-01-09
* Release

View file

@ -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"]

View file

@ -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()
}
}