[−][src]Struct actix_utils::time::LowResTime  
Methods
impl LowResTime[src]
pub fn with(resolution: Duration) -> LowResTime[src]
pub fn timer(&self) -> LowResTimeService[src]
Trait Implementations
impl Clone for LowResTime[src]
fn clone(&self) -> LowResTime[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Default for LowResTime[src]
impl Debug for LowResTime[src]
impl ServiceFactory for LowResTime[src]
type Request = ()
Requests handled by the service.
type Response = Instant
Responses given by the service
type Error = Infallible
Errors produced by the service
type InitError = Infallible
Errors produced while building a service.
type Config = ()
Service factory configuration
type Service = LowResTimeService
The Service value created by this factory
type Future = Ready<Result<Self::Service, Self::InitError>>
The future of the Service instance.
fn new_service(&self, _: ()) -> Self::Future[src]
fn map<F, R>(self, f: F) -> MapServiceFactory<Self, F, R> where
    F: FnMut(Self::Response) -> R + Clone, [src]
F: FnMut(Self::Response) -> R + Clone,
fn map_err<F, E>(self, f: F) -> MapErrServiceFactory<Self, F, E> where
    F: Fn(Self::Error) -> E + Clone, [src]
F: Fn(Self::Error) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E> where
    F: Fn(Self::InitError) -> E + Clone, [src]
F: Fn(Self::InitError) -> E + Clone,
Auto Trait Implementations
impl !Send for LowResTime
impl !Sync for LowResTime
impl Unpin for LowResTime
impl !UnwindSafe for LowResTime
impl !RefUnwindSafe for LowResTime
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> IntoServiceFactory<T> for T where
    T: ServiceFactory, [src]
T: ServiceFactory,