Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
MicroSEH is a tiny library that implements Structured Exception Handling (SEH) in Rust and can catch and handle hardware exceptions.
Why?
Hardware exceptions are a very powerful tool for specific use cases. One such use case is to detect and handle illegal instructions at runtime.
Implementation
It turns out that implementing SEH in pure Rust has its own issues (as seen in this article from NAMAZSO)
This library uses a different, simpler approach, which is to use a C stub that calls back into Rust, wrapping
the call in a __try __except block.
Usage
Add this to your Cargo.toml:
[]
= "0.2"
Minimal Example: Dereference a null pointer without crashing the program, and return the handled exception.
Portability
SEH is a Microsoft extension to the C language, so it's only available on Windows with MSVC.