devela_base_std 0.26.0

base std shared functionality for devela
Documentation
// devela_base_std::sys::fs::path::_reexport
//
//!
//

use crate::{_TAG_ERROR, _TAG_FMT, _TAG_FS, _TAG_ITERATOR, _TAG_LIFETIME, _reexport};

/* structs */

_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_ITERATOR!(),
    doc: "An iterator over [`Path`] and its ancestors.",
    @Ancestors as IterPathAncestors
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_ITERATOR!(),
    doc: "An iterator over the Components of a Path.",
    @Components as IterPathComponents
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_FMT!(),
    doc: "Helper struct for safely printing paths with [`format!`] and `{}`.",
    @Display as PathDisplay
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_ITERATOR!(),
    doc: "An iterator over the [`IterPathComponents`]
of a [`Path`], as [`OsStr`][crate::OsStr] slices.",
    @Iter as IterPath
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_LIFETIME!(),
    doc: "A slice of a path (akin to [`str`]).",
    Path
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!(),
    doc: "An owned, mutable path (akin to [`String`]).",
    PathBuf
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!(),
    doc: "Wraps a Windows path prefix as well as its unparsed string representation.",
    @PrefixComponent as PathPrefixComponent
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!() _TAG_ERROR!(),
    doc: "An error returned from [`Path::strip_prefix`] if the prefix was not found.",
    @StripPrefixError as PathStripPrefixError
}

/* enums */

_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!(),
    doc: "A single component of a path.",
    @Component as PathComponent
}
_reexport! { rust: std::path, location: "sys/fs", tag: _TAG_FS!(),
    doc: r"Windows path prefixes, e.g., `C:` or `\\server\share.`",
    @Prefix as PathPrefix
}