objio 0.1.2

This crate provides simple traits for reading and writing objects.
Documentation
  • Coverage
  • 100%
    18 out of 18 items documented2 out of 13 items with examples
  • Size
  • Source code size: 16.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 347.57 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • johnstonskj/rust-objio
    0 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • johnstonskj

Rust crate objio

This crate provides simple traits for reading and writing objects.

The traits ObjectReader and ObjectWriter are not intended as a generalized serialization framework like serde, they are provided to simply read/write specific object types in specific formats.

Example

TBD.

Changes

Version 0.1.2

  • Documentation: added documentation to all traits and a detailed example at the module level.

Version 0.1.1

  • Refactor: updated error type processing.
    • Removed custom Error type.
    • Changed trait Error types to have a constraint requiring From<<std::io::Error>>.

Version 0.1.0

  • Initial release.