pub trait TypeParser {
    // Provided method
    fn parse_types_from_source<S: BnStrCompatible, P: AsRef<Path>>(
        &self,
        _source: S,
        _filename: S,
        _include_directories: &[P],
        _auto_type_source: S
    ) -> Result<TypeParserResult, String> { ... }
}

Provided Methods§

source

fn parse_types_from_source<S: BnStrCompatible, P: AsRef<Path>>( &self, _source: S, _filename: S, _include_directories: &[P], _auto_type_source: S ) -> Result<TypeParserResult, String>

Object Safety§

This trait is not object safe.

Implementors§