Sha256: ed83b17031ea2db3b89668b209bac76ad1be86836716e5f1f86ad02e6bddb9c8
Contents?: true
Size: 1.33 KB
Versions: 11
Compression:
Stored size: 1.33 KB
Contents
//! Extension traits for `Dir` #![deny(missing_docs)] #![forbid(unsafe_code)] #![cfg_attr(all(windows, windows_by_handle), feature(windows_by_handle))] #![doc( html_logo_url = "https://raw.githubusercontent.com/bytecodealliance/cap-std/main/media/cap-std.svg" )] #![doc( html_favicon_url = "https://raw.githubusercontent.com/bytecodealliance/cap-std/main/media/cap-std.ico" )] mod dir_entry_ext; mod dir_ext; mod file_type_ext; mod is_file_read_write; mod metadata_ext; mod open_options_follow_ext; mod open_options_maybe_dir_ext; mod open_options_sync_ext; mod reopen; pub use dir_entry_ext::DirEntryExt; #[cfg(all(any(feature = "std", feature = "async_std"), feature = "fs_utf8"))] pub use dir_ext::DirExtUtf8; pub use dir_ext::{AccessType, DirExt, SystemTimeSpec}; pub use file_type_ext::FileTypeExt; pub use is_file_read_write::IsFileReadWrite; pub use metadata_ext::MetadataExt; pub use open_options_follow_ext::OpenOptionsFollowExt; pub use open_options_maybe_dir_ext::OpenOptionsMaybeDirExt; pub use open_options_sync_ext::OpenOptionsSyncExt; pub use reopen::Reopen; /// Re-export these to allow them to be used with `Reuse`. pub use cap_primitives::fs::{FollowSymlinks, Metadata, OpenOptions}; #[doc(hidden)] pub use cap_primitives::ambient_authority_known_at_compile_time; pub use cap_primitives::{ambient_authority, AmbientAuthority};
Version data entries
11 entries across 11 versions & 1 rubygems