mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-04 15:36:40 +00:00
init path submodule as unstable
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
51e7f880b1
commit
5b05846fb0
2 changed files with 23 additions and 0 deletions
|
@ -62,6 +62,8 @@ pub mod task;
|
||||||
|
|
||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(any(feature = "unstable", feature = "docs"))] {
|
if #[cfg(any(feature = "unstable", feature = "docs"))] {
|
||||||
|
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
||||||
|
pub mod path;
|
||||||
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
||||||
pub mod pin;
|
pub mod pin;
|
||||||
|
|
||||||
|
|
21
src/path/mod.rs
Normal file
21
src/path/mod.rs
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
//! Cross-platform path manipulation.
|
||||||
|
//!
|
||||||
|
//! This module is an async version of [`std::path`].
|
||||||
|
//!
|
||||||
|
//! [`std::path`]: https://doc.rust-lang.org/std/path/index.html
|
||||||
|
|
||||||
|
// Structs re-export
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use std::path::{Ancestors, Components, Display, Iter, PrefixComponent, StripPrefixError};
|
||||||
|
|
||||||
|
// Enums re-export
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use std::path::{Component, Prefix};
|
||||||
|
|
||||||
|
// Constants re-export
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use std::path::MAIN_SEPARATOR;
|
||||||
|
|
||||||
|
// Functions re-export
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use std::path::is_separator;
|
Loading…
Reference in a new issue