Structs§
- Craft
Connection - Craft
Reader - Wraps some stream of type
R, and implements eitherCraftSyncReaderorCraftAsyncReader(or both) based on what typesRimplements. - Craft
Writer - Wraps some stream of type
W, and implements eitherCraftSyncWriterorCraftAsyncWriter(or both) based on what typesWimplements.
Enums§
Constants§
Traits§
- Async
Read Exact - Async
Write All - Craft
Async Reader - Craft
Async Writer - This trait is the interface by which you can write packets to some underlying
AsyncWritestream - CraftIo
- Trait for stateful connection types, such as the
CraftReader<R>orCraftWriter<W>or combo typeCraftConnection<R, W>. - Craft
Sync Reader - Craft
Sync Writer - This trait is the interface by which you can write packets to some underlying implementor of
std::io::Write. - Craft
Wrapper - Indicates that a type provided by this crate is wrapping some inner value of type
I, which can be unwrapped by calling theinto_innerfunction.