pub trait TryIntoType<ContextType> {
    type Error;

    // Required method
    fn try_into_type_map(
        &self
    ) -> Result<HashMap<String, ContextType>, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_into_type_map(&self) -> Result<HashMap<String, ContextType>, Self::Error>

Implementors§