Crate coreplus[][src]

Expand description

The batteries for core that you never knew you needed: core+.

This crate contains a number of traits that make it possible to write libraries that are fully generic on the network and I/O stack.

Using the standard library

This crate can be used with standard library types by enabling the std feature.

[dependencies]
coreplus = { version = "0.1.2", features = ["std"] }

The unstable feature

Enabling the unstable feature will add *_vectored methods to the io::AsyncRead, io::AsyncWrite, io::Read, and io::Write traits.

[dependencies]
coreplus = { version = "0.1.2", features = ["unstable"] }

Modules

I/O traits

Networking traits