formualizer-eval 0.7.0

High-performance Arrow-backed Excel formula engine with dependency graph and incremental recalculation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Provider-neutral partition identifiers for future Phase 8 partitioning.
//!
//! See PHASE_8_COMPATIBILITY_NOTES.md.

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/// Opaque session-local identifier for a future Phase 8 partition.
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct PartitionId(pub u32);