mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 07:36:28 +00:00
11 lines
173 B
Rust
11 lines
173 B
Rust
#![deny(deprecated, clippy::all, clippy::pedantic)]
|
|
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[deprecated]
|
|
#[error("...")]
|
|
Deprecated,
|
|
}
|