pub trait PathJoined {
// Required method
fn iter_join(self) -> Result<PathBuf, Error>;
}Expand description
A trait for joining path components into a PathBuf.
This trait provides a method to join multiple path components into a single PathBuf.
It is implemented for tuples of varying lengths, allowing for flexible combinations of path components.
Each component must implement the TryIntoCowPath trait, enabling conversion into a Cow<Path>.