elast0ny / shared_memory

A Rust wrapper around native shared memory for Linux and Windows
382 stars 51 forks source link

Improve error related code #27

Closed elast0ny closed 5 years ago

elast0ny commented 5 years ago

Currently, the crate is quite painful to use because it returns Box'ed strings as errors.

At the bare minimum, the crate should at least have an error enum that implements std::fmt::Display and such.

elast0ny commented 5 years ago

New error style has been fleshed out and works on Windows. Just have to modify the Linux code to match the changes