Module tokio_by_hand::extended [] [src]

Simple Futures, Sinks, and Streams using the extended futures API

Modules

adapter
buffered
common
delayed
delayed_series
instant
instant_series
sleeper

Structs

AgreementToNotify

An object representing an agreement to notify the current task.

TaskHandle

A handle to the current task

Enums

ExtendedAsync

The extended API equivalent of Async

ExtendedAsyncSink

The extended API equivalent of AsyncSink

Traits

ExtendedFuture

The extended API equivalent of the Future trait

ExtendedSink

The extended API equivalent of the Sink trait

ExtendedStream

The extended API equivalent of the Stream trait

Functions

future_adapter

An adaptor function to be used when implementing a standard API Future with an implementation of an extended API Future.

sink_poll_complete_adapter

An adaptor function to be used when implementing a standard API Sink::poll_complete with an implementation of an extended API Sink.

sink_start_send_adapter

An adaptor function to be used when implementing a standard API Sink::start_send with an implementation of an extended API Sink.

stream_adapter

An adaptor function to be used when implementing a standard API Stream with an implementation of an extended API Stream.

Type Definitions

ExtendedPoll

The extended API version of Poll