Optimize Millis and Io memory layout (#100)

* Optimize Millis and Io memory layout
This commit is contained in:
Nikolay Kim 2022-01-27 01:25:44 +06:00 committed by GitHub
parent 321218f80b
commit cb7af434ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 221 additions and 117 deletions

View file

@ -217,10 +217,8 @@ where
#[cfg(test)]
mod tests {
use std::task::{Context, Poll};
use std::time::Duration;
use std::{fmt, task::Context, task::Poll, time::Duration};
use derive_more::Display;
use ntex_service::{apply, fn_factory, Service, ServiceFactory};
use super::*;
@ -229,9 +227,15 @@ mod tests {
#[derive(Clone, Debug, PartialEq)]
struct SleepService(Duration);
#[derive(Clone, Debug, Display, PartialEq)]
#[derive(Clone, Debug, PartialEq)]
struct SrvError;
impl fmt::Display for SrvError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "SrvError")
}
}
impl Service<()> for SleepService {
type Response = ();
type Error = SrvError;