Trait from_as::FromFile[][src]

pub trait FromFile<RHS = Self> {
    type Error: Error;
    fn from_file<P>(path: P) -> Result<RHS, Self::Error>
    where
        P: AsRef<Path>,
        Self: for<'de> Deserialize<'de>
; }

Associated Types

Required methods

Implementors