mdsteele / rust-cfb

Rust library for reading/writing Compound File Binary (structured storage) files
MIT License
46 stars 20 forks source link

Add `Debug` implementation for `CompoundFile` #40

Closed tgross35 closed 1 year ago

tgross35 commented 1 year ago

This adds a Debug implementation for CompoundFile using the debug implementation of F. For a file this looks about like:

CompoundFile(File (fd: 3, path: "/foo/bar", read: true, write: false})
tgross35 commented 1 year ago

This totally slipped my mind - I believe it should be all set now @mdsteele

mdsteele commented 1 year ago

Thanks!