[−][src]Struct actix_utils::time::LowResTimeService
Methods
impl LowResTimeService[src]
pub fn with(resolution: Duration) -> LowResTimeService[src]
pub fn now(&self) -> Instant[src]
Get current time. This function has to be called from future's poll method, otherwise it panics.
Trait Implementations
impl Clone for LowResTimeService[src]
fn clone(&self) -> LowResTimeService[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for LowResTimeService[src]
impl Service for LowResTimeService[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 Future = Ready<Result<Self::Response, Self::Error>>
The future response value.
fn poll_ready(&mut self, _: &mut Context) -> Poll<Result<(), Self::Error>>[src]
fn call(&mut self, _: ()) -> Self::Future[src]
fn map<F, R>(self, f: F) -> Map<Self, F, R> where
F: FnMut(Self::Response) -> R, [src]
F: FnMut(Self::Response) -> R,
fn map_err<F, E>(self, f: F) -> MapErr<Self, F, E> where
F: Fn(Self::Error) -> E, [src]
F: Fn(Self::Error) -> E,
Auto Trait Implementations
impl !Send for LowResTimeService
impl !Sync for LowResTimeService
impl Unpin for LowResTimeService
impl !UnwindSafe for LowResTimeService
impl !RefUnwindSafe for LowResTimeService
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> IntoService<T> for T where
T: Service, [src]
T: Service,