Struct windows_winmd::parsed::MethodDef[][src]

pub struct MethodDef {
    pub reader: &'static TypeReader,
    pub row: Row,
}

Fields

reader: &'static TypeReaderrow: Row

Implementations

impl MethodDef[src]

pub fn flags(&self) -> MethodFlags[src]

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

pub fn name(&self) -> &'static str[src]

pub fn sig(&self) -> Blob[src]

pub fn category(&self) -> MethodCategory[src]

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

pub fn impl_map(&self) -> Option<ImplMap>[src]

Trait Implementations

impl Clone for MethodDef[src]

impl Copy for MethodDef[src]

impl Debug for MethodDef[src]

impl Eq for MethodDef[src]

impl Ord for MethodDef[src]

impl PartialEq<MethodDef> for MethodDef[src]

impl PartialOrd<MethodDef> for MethodDef[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.