Crate dh
Source - Endianess
- Dynamic
- Primitive
- ReadSeek
- Because you can’t do
dyn Read + Seek
in Rust, this trait is used to combine both traits. - ReadVal
- Extension trait for
Read
that provides methods for reading supported value types. - ReadValAt
- Extension trait for
Read + Seek
that provides methods for reading supported value types. - WriteSeek
- Because you can’t do
dyn Read + Write
in Rust, this trait is used to combine both traits. - WriteVal
- Extension trait for
Write
that provides methods for writeing supported value types. - WriteValAt
- Extension trait for
Write + Seek
that provides methods for writeing supported value types.
- Error
- Result