mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 22:59:58 -07:00
13 lines
247 B
Rust
13 lines
247 B
Rust
use allocative::Allocative;
|
|
|
|
use super::{AddressLiquidity, AddressSize, AddressType};
|
|
|
|
#[derive(Default, Allocative)]
|
|
pub enum AddressSplit {
|
|
#[default]
|
|
All,
|
|
Type(AddressType),
|
|
Size(AddressSize),
|
|
Liquidity(AddressLiquidity),
|
|
}
|