//! Common traits for MIG tree types.
/// Trait implemented by all generated PID-specific tree types.
////// Provides common operations that work across any PID structure:
/// identification, metadata access, and serialization.
pubtraitPidTree: std::fmt::Debug + Send + Sync {/// The PID identifier (e.g., "55001").
fnpid_id(&self)->&str;/// Human-readable description of this PID.
fnbeschreibung(&self)->&str;/// Communication direction (e.g., "NB an LF").
fnkommunikation_von(&self)->Option<&str>;/// The message type (e.g., "UTILMD").
fnmessage_type(&self)->&str;/// The format version (e.g., "FV2504").
fnformat_version(&self)->&str;}