File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
//! # Stream Aggregator
16
- //!
16
+ //!
17
17
//! Provides an aggregator that combines a collection of [futures::Stream]s of the same type
18
18
//! into a single [futures::Stream].
19
- //!
19
+ //!
20
20
//! Additional streams can be added after initial construction.
21
21
22
22
mod reader;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
//! # SwimOS routes
16
- //!
16
+ //!
17
17
//! A route is a URI with no authority that specified the location of a single SwimOS agent instance.
18
18
//! It does not specify the host on which the agent can be found and this information must be retrieved
19
19
//! from a routing table or provided separately.
20
- //!
20
+ //!
21
21
//! This crate contains:
22
- //!
22
+ //!
23
23
//! - A type to represent a [route URI](`RouteUri``).
24
- //! - [Route patterns](`RoutePattern`) that can be used to extract components from the path of a
24
+ //! - [Route patterns](`RoutePattern`) that can be used to extract components from the path of a
25
25
//! route URI.
26
26
27
27
mod route_pattern;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
//! # Synchronization Channels
16
- //!
16
+ //!
17
17
//! This crate contains asynchronous channels to communicate between tasks or threads.
18
18
19
19
mod circular_buffer;
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
+ //! # Time Utility
16
+ //!
17
+ //! Utility types and functions for working with timestamps and durations.
18
+
15
19
mod instant;
16
20
17
21
pub use instant:: AtomicInstant ;
You can’t perform that action at this time.
0 commit comments