mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
85 lines
1.8 KiB
Rust
85 lines
1.8 KiB
Rust
use std::ops::Add;
|
|
|
|
use derive_deref::{Deref, DerefMut};
|
|
use serde::Serialize;
|
|
use vecdb::{CheckedSub, Printable, StoredCompressed};
|
|
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
|
|
|
|
use crate::TypeIndex;
|
|
|
|
#[derive(
|
|
Debug,
|
|
PartialEq,
|
|
Eq,
|
|
PartialOrd,
|
|
Ord,
|
|
Clone,
|
|
Copy,
|
|
Deref,
|
|
DerefMut,
|
|
Default,
|
|
FromBytes,
|
|
Immutable,
|
|
IntoBytes,
|
|
KnownLayout,
|
|
Serialize,
|
|
StoredCompressed,
|
|
)]
|
|
pub struct P2PKHAddressIndex(TypeIndex);
|
|
impl From<TypeIndex> for P2PKHAddressIndex {
|
|
fn from(value: TypeIndex) -> Self {
|
|
Self(value)
|
|
}
|
|
}
|
|
impl From<P2PKHAddressIndex> for TypeIndex {
|
|
fn from(value: P2PKHAddressIndex) -> Self {
|
|
value.0
|
|
}
|
|
}
|
|
impl From<P2PKHAddressIndex> for usize {
|
|
fn from(value: P2PKHAddressIndex) -> Self {
|
|
Self::from(*value)
|
|
}
|
|
}
|
|
impl From<P2PKHAddressIndex> for u64 {
|
|
fn from(value: P2PKHAddressIndex) -> Self {
|
|
Self::from(*value)
|
|
}
|
|
}
|
|
impl From<P2PKHAddressIndex> for u32 {
|
|
fn from(value: P2PKHAddressIndex) -> Self {
|
|
Self::from(*value)
|
|
}
|
|
}
|
|
impl From<u32> for P2PKHAddressIndex {
|
|
fn from(value: u32) -> Self {
|
|
Self(TypeIndex::from(value))
|
|
}
|
|
}
|
|
impl From<usize> for P2PKHAddressIndex {
|
|
fn from(value: usize) -> Self {
|
|
Self(TypeIndex::from(value))
|
|
}
|
|
}
|
|
impl Add<usize> for P2PKHAddressIndex {
|
|
type Output = Self;
|
|
fn add(self, rhs: usize) -> Self::Output {
|
|
Self(*self + rhs)
|
|
}
|
|
}
|
|
impl CheckedSub<P2PKHAddressIndex> for P2PKHAddressIndex {
|
|
fn checked_sub(self, rhs: Self) -> Option<Self> {
|
|
self.0.checked_sub(rhs.0).map(Self)
|
|
}
|
|
}
|
|
|
|
impl Printable for P2PKHAddressIndex {
|
|
fn to_string() -> &'static str {
|
|
"p2pkhaddressindex"
|
|
}
|
|
|
|
fn to_possible_strings() -> &'static [&'static str] {
|
|
&["pkhaddr", "p2pkhaddr", "p2pkhaddressindex"]
|
|
}
|
|
}
|