current_dir 0.1.2

Thread Safe Current Working Directory
Documentation
1
2
3
4
5
6
7
8
9
//! Private module for the [`Sealed`] trait.

use super::{Cwd, CwdGuard};

/// Trait to protect against downstream implementations.
#[expect(dead_code, reason = "Designed to prevent use")]
pub trait Sealed {}
impl Sealed for Cwd {}
impl Sealed for CwdGuard<'_> {}