pub trait RustTypeInfo {
    // Required methods
    fn is_prim(&self) -> Result<bool, Error>;
    fn is_parameter(&self) -> Result<bool, Error>;
    fn is_branded(&self) -> Result<bool, Error>;
    fn type_string(
        &self,
        gen: &GeneratorContext<'_>,
        module: Leaf
    ) -> Result<String, Error>;
}

Required Methods§

Implementors§

source§

impl<'a> RustTypeInfo for Reader<'a>