mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-21 18:02:50 +02:00
14 lines
185 B
Rust
14 lines
185 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
pub struct NotError;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub enum ErrorEnum {
|
|
Broken {
|
|
source: NotError,
|
|
},
|
|
}
|
|
|
|
fn main() {}
|