Trait from_as_file::FromFile[][src]

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

Associated Types

Required methods

Implementors