mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
Merge pull request #351 from dtolnay/rawbacktrace
Add test of r#Backtrace that is not std::backtrace::Backtrace
This commit is contained in:
commit
3d23842d35
1 changed files with 11 additions and 0 deletions
|
@ -21,6 +21,11 @@ pub mod structs {
|
|||
use std::sync::Arc;
|
||||
use thiserror::Error;
|
||||
|
||||
mod not_backtrace {
|
||||
#[derive(Debug)]
|
||||
pub struct Backtrace;
|
||||
}
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub struct PlainBacktrace {
|
||||
|
@ -34,6 +39,12 @@ pub mod structs {
|
|||
backtrace: Backtrace,
|
||||
}
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub struct NotBacktrace {
|
||||
backtrace: crate::structs::not_backtrace::r#Backtrace,
|
||||
}
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub struct OptBacktrace {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue