Structs§
- Craft
Connection - Craft
Reader - Wraps some stream of type
R
, and implements eitherCraftSyncReader
orCraftAsyncReader
(or both) based on what typesR
implements. - Craft
Writer - Wraps some stream of type
W
, and implements eitherCraftSyncWriter
orCraftAsyncWriter
(or both) based on what typesW
implements.
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
AsyncWrite
stream - 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_inner
function.