// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025-present, fjall-rs
// Copyright (c) 2026-present, Structured World Foundation
// TODO: rename FileOffset?
#[derive(Copy, Clone, Default, Debug, core::hash::Hash, PartialEq, Eq, Ord, PartialOrd)]
pub struct BlockOffset(pub u64);
impl core::ops::Deref for BlockOffset {
type Target = u64;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::AddAssign<Self> for BlockOffset {
fn add_assign(&mut self, rhs: Self) {
*self += *rhs;
}
}
impl core::ops::AddAssign<u64> for BlockOffset {
fn add_assign(&mut self, rhs: u64) {
self.0 += rhs;
}
}