mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-27 08:28:49 +01:00
10 lines
No EOL
150 B
Rust
10 lines
No EOL
150 B
Rust
pub trait Bool {}
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub struct True {}
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub struct False {}
|
|
|
|
impl Bool for True {}
|
|
impl Bool for False {} |