Trait IntoPath

Source
pub trait IntoPath {
    type IntoPath;

    // Required method
    fn into_path(self) -> Self::IntoPath;
}
Expand description

For converting a PathBuilder into the Path inside it.

Required Associated Types§

Required Methods§

Source

fn into_path(self) -> Self::IntoPath

Get the Path inside the PathBuilder.

Implementors§