Struct actix_net::timer::LowResTimerService[][src]

pub struct LowResTimerService(_);

Methods

impl LowResTimerService
[src]

Get current time. This function has to be called from future's poll method, otherwise it panics.

Trait Implementations

impl Clone for LowResTimerService
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LowResTimerService
[src]

Formats the value using the given formatter. Read more

impl Service for LowResTimerService
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

Returns Ready when the service is able to process requests. Read more

Process the request and return the response asynchronously. Read more

A future yielding the service when it is ready to accept a request.

Auto Trait Implementations