1//! Snapshot of `PtyConfig` for read-only access without holding the RwLock 2//! across an await point (RFC-038 ยง8.1). 3use crate::config::PtyConfig; 4 5/// Cheap clone of `PtyConfig` for snapshot reads. 6pub type PtyConfigSnapshot = PtyConfig;