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§
type Output: FileKeyable + DeserializeOwned
Provided Methods§
fn from_map( data: &mut HashMap<FileKey, Vec<StringRecord>>, ) -> Result<Vec<Self::Output>, Error>
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.