Sign in
android
/
toolchain
/
cargo-deny
/
8cc2f0e3b06f4a40eef9fb4e0c470518f188b98f
/
.
/
android
/
vendor
/
rustix-0.38.11
/
src
/
path
/
mod.rs
blob: 19bf2c7f086ac9572452198b61e42e0a42bf2023 [
file
] [
log
] [
blame
]
//! Filesystem path operations.
mod
arg
;
#[
cfg
(
feature
=
"itoa"
)]
mod
dec_int
;
pub
use
arg
::
Arg
;
#[
cfg
(
feature
=
"itoa"
)]
#[
cfg_attr
(
doc_cfg
,
doc
(
cfg
(
feature
=
"itoa"
)))]
pub
use
dec_int
::
DecInt
;
pub
(
crate
)
const
SMALL_PATH_BUFFER_SIZE
:
usize
=
256
;