Location

Trait Location 

Source
pub trait Location {
    // Required method
    fn try_into_path(self) -> Either<PathBuf, Self>
       where Self: Sized;
}

Required Methods§

Source

fn try_into_path(self) -> Either<PathBuf, Self>
where Self: Sized,

Implementors§

Source§

impl Location for FileLocation

Source§

impl<T: TryInto<PathBuf, Error = T>> Location for T