//! Display-adapter wrapper for [`Path`]-like values.
//! This is an experimental helper module. Prefer composing a path-aware
//! [`Format`](crate::Format) strategy for [`WithContext`](crate::WithContext)
//! via [`ContextPath`](crate::with_context::ContextPath) — see
//! [`PathColon`](crate::with_context::PathColon) and
//! [`WithPath`](crate::with_context::WithPath) for the canonical use.
use fmt;
use Path;
/// Wrapper that gives a [`Path`]-like value a [`fmt::Display`] impl (via
/// [`Path::display`]) so it can be used in contexts that require `Display`,
/// e.g. as the context slot of [`WithContext`](crate::WithContext) under the
/// default [`Colon`](crate::with_context::Colon) strategy. Prefer
/// [`PathColon`](crate::with_context::PathColon) when you only need a path-aware strategy.
;