Enums
Traits
- Define that an object that can be read from an
std::io::Read
object. - Define that an object can be read from a byte slice. This trait is implemented for all
Deserialize
implementors by default. The default implementation can be overridden if the user is sure they can benefit from slice-specific functions ofCodec
. - Define that an object can be written to an
std::io::Write
object.