Struct windows_gen::InterfaceInfo[][src]

pub struct InterfaceInfo {
    pub def: GenericType,
    pub kind: InterfaceKind,
    pub is_base: bool,
    pub version: (u16, u16),
}

Fields

def: GenericTypekind: InterfaceKindis_base: boolversion: (u16, u16)

Implementations

impl InterfaceInfo[src]

pub fn sort(result: &mut Vec<Self>)[src]

pub fn gen_methods(interfaces: &[Self], gen: &Gen<'_>) -> TokenStream[src]

pub fn gen_conversion(
    &self,
    from: &TokenStream,
    constraints: &TokenStream,
    gen: &Gen<'_>
) -> TokenStream
[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, 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.