pub trait RepoPathJoin<T> {
    type Result;

    // Required method
    fn join(&self, entry: &T) -> Self::Result;
}

Required Associated Types§

Required Methods§

source

fn join(&self, entry: &T) -> Self::Result

Implementors§