[][src]Struct opencv_binding_generator::GeneratorEnv

pub struct GeneratorEnv<'tu> {
    pub func_names: NamePool,
    // some fields omitted
}

Fields

func_names: NamePool

Implementations

impl<'tu> GeneratorEnv<'tu>[src]

pub fn new(root_entity: Entity<'tu>, module: &'tu str) -> Self[src]

pub fn module(&self) -> &str[src]

pub fn make_export_config(&mut self, entity: Entity) -> &mut ExportConfig[src]

pub fn get_export_config(&self, entity: Entity) -> Option<&ExportConfig>[src]

pub fn get_func_comment(&self, cpp_fullname: &str) -> Option<&str>[src]

pub fn has_descendants(&self, entity: Entity<'tu>) -> bool[src]

pub fn get_class_kind(&self, entity: Entity<'tu>) -> Option<ClassKind>[src]

pub fn resolve_class_constant(&self, constant: &str) -> Option<&Const<'tu>>[src]

pub fn resolve_type(&self, typ: &str) -> Option<Type<'tu>>[src]

Trait Implementations

impl<'_> Debug for GeneratorEnv<'_>[src]

Auto Trait Implementations

impl<'tu> !RefUnwindSafe for GeneratorEnv<'tu>

impl<'tu> !Send for GeneratorEnv<'tu>

impl<'tu> !Sync for GeneratorEnv<'tu>

impl<'tu> Unpin for GeneratorEnv<'tu>

impl<'tu> UnwindSafe for GeneratorEnv<'tu>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.