Struct windows_gen::GenericType[][src]

pub struct GenericType {
    pub def: TypeDef,
    pub generics: Vec<ElementType>,
}

Fields

def: TypeDefgenerics: Vec<ElementType>

Implementations

impl GenericType[src]

pub fn from_blob(blob: &mut Blob, generics: &[ElementType]) -> Self[src]

pub fn from_type_def(def: TypeDef, generics: Vec<ElementType>) -> Self[src]

pub fn definition(&self) -> Vec<ElementType>[src]

pub fn bases(&self) -> impl Iterator<Item = Self> + '_[src]

pub fn default_interface(&self) -> Self[src]

pub fn interfaces(&self) -> impl Iterator<Item = Self> + '_[src]

pub fn gen_name(&self, gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_abi_name(&self, gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_turbo_abi_name(&self, gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_guid(&self, gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_signature(&self, signature: &str, gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_phantoms<'a>(
    &'a self,
    gen: &'a Gen<'_>
) -> impl Iterator<Item = TokenStream> + 'a
[src]

pub fn gen_constraints(&self, gen: &Gen<'_>) -> TokenStream[src]

pub fn interface_signature(&self) -> String[src]

Trait Implementations

impl Clone for GenericType[src]

impl Debug for GenericType[src]

impl Eq for GenericType[src]

impl Ord for GenericType[src]

impl PartialEq<GenericType> for GenericType[src]

impl PartialOrd<GenericType> for GenericType[src]

impl StructuralEq for GenericType[src]

impl StructuralPartialEq for GenericType[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.