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

Associated Types

Required methods

Implementors