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