minidump-writer 0.8.7

Rust rewrite of Breakpad's minidump_writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error(transparent)]
    Io(#[from] std::io::Error),
    #[error(transparent)]
    Scroll(#[from] scroll::Error),
    #[error("Failed to open thread")]
    ThreadOpen(#[source] std::io::Error),
    #[error("Failed to suspend thread")]
    ThreadSuspend(#[source] std::io::Error),
    #[error("Failed to get thread context")]
    ThreadContext(#[source] std::io::Error),
}