Trait interoptopus_backend_cpython_cffi::PythonTypeConverter[][src]

pub trait PythonTypeConverter {
    fn c_converter(&self) -> &Converter;
fn to_type_hint(&self, the_type: &CType) -> String;
fn to_type_hint_in(&self, the_type: &CType) -> String;
fn to_type_hint_out(&self, the_type: &CType) -> String;
fn constant_value_to_value(&self, value: &ConstantValue) -> String;
fn documentation(&self, documentation: &Documentation) -> String;
fn fnpointer_to_typename(&self, fn_pointer: &FnPointerType) -> String; }
Expand description

Converts Interoptopus types to Python types.

Required methods

Implementors