mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Ignore warning on unused struct in test
warning: struct `OptSourceNoBacktrace` is never constructed --> tests/test_option.rs:10:16 | 10 | pub struct OptSourceNoBacktrace { | ^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: struct `OptSourceAlwaysBacktrace` is never constructed --> tests/test_option.rs:17:16 | 17 | pub struct OptSourceAlwaysBacktrace { | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: struct `NoSourceOptBacktrace` is never constructed --> tests/test_option.rs:25:16 | 25 | pub struct NoSourceOptBacktrace { | ^^^^^^^^^^^^^^^^^^^^ warning: struct `AlwaysSourceOptBacktrace` is never constructed --> tests/test_option.rs:32:16 | 32 | pub struct AlwaysSourceOptBacktrace { | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: struct `OptSourceOptBacktrace` is never constructed --> tests/test_option.rs:40:16 | 40 | pub struct OptSourceOptBacktrace { | ^^^^^^^^^^^^^^^^^^^^^
This commit is contained in:
parent
f2824ae379
commit
4db08b10a3
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,7 @@ pub mod structs {
|
|||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[allow(dead_code)]
|
||||
pub struct OptSourceNoBacktrace {
|
||||
#[source]
|
||||
source: Option<anyhow::Error>,
|
||||
|
@ -14,6 +15,7 @@ pub mod structs {
|
|||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[allow(dead_code)]
|
||||
pub struct OptSourceAlwaysBacktrace {
|
||||
#[source]
|
||||
source: Option<anyhow::Error>,
|
||||
|
@ -22,6 +24,7 @@ pub mod structs {
|
|||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[allow(dead_code)]
|
||||
pub struct NoSourceOptBacktrace {
|
||||
#[backtrace]
|
||||
backtrace: Option<Backtrace>,
|
||||
|
@ -29,6 +32,7 @@ pub mod structs {
|
|||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[allow(dead_code)]
|
||||
pub struct AlwaysSourceOptBacktrace {
|
||||
source: anyhow::Error,
|
||||
#[backtrace]
|
||||
|
@ -37,6 +41,7 @@ pub mod structs {
|
|||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[allow(dead_code)]
|
||||
pub struct OptSourceOptBacktrace {
|
||||
#[source]
|
||||
source: Option<anyhow::Error>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue