//! Rust SDK 邮箱抽象层 (对齐 C# Abstractions)
//!
//! 统一七大邮箱协议 (CoE / FoE / SoE / AoE / EoE / VoE / FSoE)
//! 的 "协议类型 / 是否支持 / 最后错误 / 统计快照" 视图.
//!
//! 对应 C# namespace `DarraEtherCAT_Master.Abstractions`:
//! - `MailboxStatus` <-> `MailboxStatus.cs`
//! - `MailboxStatistics` <-> `MailboxStatistics.cs`
//! - `MailboxProtocol` <-> `IMailboxProtocol.cs`
//! - `MailboxError` <-> C# 端无直接对应, Rust 额外提供 thiserror 枚举
pub use MailboxStatus;
pub use MailboxStatistics;
pub use MailboxProtocol;
pub use ;