Enum opencv_binding_generator::DependentType[][src]

pub enum DependentType<'tu, 'ge> {
    ReturnTypeWrapper(ReturnTypeWrapper<'tu, 'ge>),
    AbstractRefWrapper(AbstractRefWrapper<'tu, 'ge>),
    Vector(Vector<'tu, 'ge>),
    SmartPtr(SmartPtr<'tu, 'ge>),
}

Variants

ReturnTypeWrapper(ReturnTypeWrapper<'tu, 'ge>)
AbstractRefWrapper(AbstractRefWrapper<'tu, 'ge>)
Vector(Vector<'tu, 'ge>)
SmartPtr(SmartPtr<'tu, 'ge>)

Implementations

impl<'tu, 'ge> DependentType<'tu, 'ge>[src]

pub fn from_return_type_wrapper(s: ReturnTypeWrapper<'tu, 'ge>) -> Self[src]

pub fn from_abstract_ref_wrapper(s: AbstractRefWrapper<'tu, 'ge>) -> Self[src]

pub fn from_vector(s: Vector<'tu, 'ge>) -> Self[src]

pub fn from_smart_ptr(s: SmartPtr<'tu, 'ge>) -> Self[src]

Trait Implementations

impl<'tu, 'ge> Debug for DependentType<'tu, 'ge>[src]

Auto Trait Implementations

impl<'tu, 'ge> !RefUnwindSafe for DependentType<'tu, 'ge>

impl<'tu, 'ge> !Send for DependentType<'tu, 'ge>

impl<'tu, 'ge> !Sync for DependentType<'tu, 'ge>

impl<'tu, 'ge> Unpin for DependentType<'tu, 'ge> where
    'tu: 'ge, 

impl<'tu, 'ge> !UnwindSafe for DependentType<'tu, 'ge>

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.