Sha256: 2bfff9431b151a31dbd0e128d7c0ab3aa2c8b59ca8fdcbd60e299bab4a771fee
Contents?: true
Size: 314 Bytes
Versions: 39
Compression:
Stored size: 314 Bytes
Contents
use std::io; #[cfg(not(windows))] pub(crate) use crate::rustix::fs::errors::*; #[cfg(windows)] pub(crate) use crate::windows::fs::errors::*; #[cold] pub(crate) fn escape_attempt() -> io::Error { io::Error::new( io::ErrorKind::PermissionDenied, "a path led outside of the filesystem", ) }
Version data entries
39 entries across 39 versions & 1 rubygems