Trait GetFromRawAemo

Source
pub trait GetFromRawAemo {
    type Output: FileKeyable + DeserializeOwned;

    // Provided method
    fn from_map(
        data: &mut HashMap<FileKey, Vec<StringRecord>>,
    ) -> Result<Vec<Self::Output>, Error> { ... }
}

Required Associated Types§

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§