Struct windows_metadata::TypeDef
source · [−]Fields
row: Row
generics: Vec<Type>
Implementations
sourceimpl TypeDef
impl TypeDef
pub fn with_generics(self) -> Self
pub fn is_callback(&self) -> bool
pub fn has_default_constructor(&self) -> bool
pub fn invoke_method(&self) -> MethodDef
pub fn default_interface(&self) -> Option<Self>
pub fn interfaces(&self) -> impl Iterator<Item = Self> + '_
pub fn required_interfaces(&self) -> Vec<Self>
pub fn class_interfaces(&self) -> Vec<(Self, InterfaceKind)>
pub fn size(&self) -> usize
pub fn is_deprecated(&self) -> bool
pub fn is_handle(&self) -> bool
pub fn is_udt(&self) -> bool
pub fn is_convertible(&self) -> bool
pub fn is_primitive(&self) -> bool
pub fn is_union(&self) -> bool
pub fn has_union(&self) -> bool
pub fn has_pack(&self) -> bool
pub fn type_signature(&self) -> String
pub fn underlying_type(&self) -> Type
pub fn is_winrt(&self) -> bool
pub fn is_interface(&self) -> bool
pub fn name(&self) -> &'static str
pub fn namespace(&self) -> &'static str
pub fn type_name(&self) -> TypeName
pub fn extends(&self) -> TypeName
pub fn bases(&self) -> impl Iterator<Item = TypeDef>
pub fn base_interfaces(&self) -> (Vec<Self>, bool)
pub fn vtable_types(&self) -> Vec<Type>
pub fn fields(&self) -> impl Iterator<Item = Field>
pub fn methods(&self) -> impl Iterator<Item = MethodDef>
pub fn generic_params(&self) -> impl Iterator<Item = GenericParam>
pub fn interface_impls(&self) -> impl Iterator<Item = InterfaceImpl>
pub fn nested_types(&self) -> Option<&BTreeMap<&'static str, TypeDef>>
pub fn attributes(&self) -> impl Iterator<Item = Attribute>
pub fn has_flags(&self) -> bool
pub fn is_exclusive(&self) -> bool
pub fn is_scoped(&self) -> bool
pub fn is_api_contract(&self) -> bool
pub fn is_agile(&self) -> bool
pub fn is_convertible_to(&self) -> Option<&Type>
pub fn is_public_composable(&self) -> bool
pub fn is_blittable(&self) -> bool
pub fn kind(&self) -> TypeKind
pub fn version(&self) -> (u16, u16)
pub fn guid(&self) -> GUID
pub fn is_nullable(&self) -> bool
pub fn can_implement(&self) -> bool
pub fn enclosing_type(&self) -> Option<Self>
pub fn class_layout(&self) -> Option<ClassLayout>
pub fn overridable_interfaces(&self) -> Vec<TypeDef>
pub fn overridable_methods(&self) -> BTreeSet<&'static str>
pub fn async_kind(&self) -> AsyncKind
pub fn cfg(&self) -> Cfg
pub fn impl_cfg(&self) -> Cfg
Trait Implementations
sourceimpl Ord for TypeDef
impl Ord for TypeDef
sourceimpl PartialOrd<TypeDef> for TypeDef
impl PartialOrd<TypeDef> for TypeDef
sourcefn partial_cmp(&self, other: &TypeDef) -> Option<Ordering>
fn partial_cmp(&self, other: &TypeDef) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for TypeDef
impl StructuralEq for TypeDef
impl StructuralPartialEq for TypeDef
Auto Trait Implementations
impl RefUnwindSafe for TypeDef
impl Send for TypeDef
impl Sync for TypeDef
impl Unpin for TypeDef
impl UnwindSafe for TypeDef
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more