1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! Cross-platform path manipulation.
//!
//! This module provides two types, [`PathBuf`] and [`Path`] (akin to [`String`]
//! and [`str`]), for working with paths abstractly. These types are thin wrappers
//! around [`OsString`] and [`OsStr`] respectively, meaning that they work directly
//! on strings according to the local platform's path syntax.
//!
//! Paths can be parsed into [`Component`]s by iterating over the structure
//! returned by the [`components`] method on [`Path`]. [`Component`]s roughly
//! correspond to the substrings between path separators (`/` or `\`). You can
//! reconstruct an equivalent path from components with the [`push`] method on
//! [`PathBuf`]; note that the paths may differ syntactically by the
//! normalization described in the documentation for the [`components`] method.
//!
//! ## Feature `std`
//!
//! When the `std` feature is enabled, all types are re-exported directly from
//! [`std::path`] and [`std::ffi`], giving full platform support and filesystem
//! methods. When `std` is disabled (the default), lightweight `no_std`
//! implementations are provided instead.
//!
//! [`components`]: Path::components
//! [`push`]: PathBuf::push
// ── std feature: re-export from std ──────────────────────────────────────────
pub use ;
pub use ;
// ── no_std: use our own implementations ──────────────────────────────────────
extern crate alloc;
pub use crate;
pub use crate;
// ── Implementation sentinel ──────────────────────────────────────────────────
/// `true` when using the custom `no_std` implementation,
/// `false` when re-exporting from `std::path`.
pub const NO_STD_IMPL: bool = true;
/// `true` when using the custom `no_std` implementation,
/// `false` when re-exporting from `std::path`.
pub const NO_STD_IMPL: bool = false;