pub trait ToRelative {
    type Output: Display;

    fn to_relative(self) -> Self::Output;
}
Expand description

Convert a path to a path relative to the current directory which implements Display.

Required Associated Types

Tye type of the converted path that implements Display.

Required Methods

Convert the path to a path relative to the current directory which implements Display.

Implementations on Foreign Types

Implementors