mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Optimize Millis and Io memory layout (#100)
* Optimize Millis and Io memory layout
This commit is contained in:
parent
321218f80b
commit
cb7af434ea
11 changed files with 221 additions and 117 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue