Struct windows::Foundation::Metadata::ApiInformation
pub struct ApiInformation;
Implementations§
§impl ApiInformation
impl ApiInformation
pub fn IsTypePresent(typename: &HSTRING) -> Result<bool>
pub fn IsMethodPresent(typename: &HSTRING, methodname: &HSTRING) -> Result<bool>
pub fn IsMethodPresentWithArity( typename: &HSTRING, methodname: &HSTRING, inputparametercount: u32, ) -> Result<bool>
pub fn IsEventPresent(typename: &HSTRING, eventname: &HSTRING) -> Result<bool>
pub fn IsPropertyPresent( typename: &HSTRING, propertyname: &HSTRING, ) -> Result<bool>
pub fn IsReadOnlyPropertyPresent( typename: &HSTRING, propertyname: &HSTRING, ) -> Result<bool>
pub fn IsWriteablePropertyPresent( typename: &HSTRING, propertyname: &HSTRING, ) -> Result<bool>
pub fn IsEnumNamedValuePresent( enumtypename: &HSTRING, valuename: &HSTRING, ) -> Result<bool>
pub fn IsApiContractPresentByMajor( contractname: &HSTRING, majorversion: u16, ) -> Result<bool>
pub fn IsApiContractPresentByMajorAndMinor( contractname: &HSTRING, majorversion: u16, minorversion: u16, ) -> Result<bool>
Auto Trait Implementations§
impl Freeze for ApiInformation
impl RefUnwindSafe for ApiInformation
impl Send for ApiInformation
impl Sync for ApiInformation
impl Unpin for ApiInformation
impl UnwindSafe for ApiInformation
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more