pub trait FileLoader<T> where
    Self::Error: Display
{ type Error; fn load<P>(p: P) -> Result<T, Self::Error>
    where
        P: AsRef<Path>
; }

Associated Types

Required methods

Implementors