Struct windows::Foundation::IPropertyValue
pub struct IPropertyValue(/* private fields */);
Implementations§
§impl IPropertyValue
impl IPropertyValue
pub fn Type(&self) -> Result<PropertyType>
pub fn IsNumericScalar(&self) -> Result<bool>
pub fn GetUInt8(&self) -> Result<u8>
pub fn GetInt16(&self) -> Result<i16>
pub fn GetUInt16(&self) -> Result<u16>
pub fn GetInt32(&self) -> Result<i32>
pub fn GetUInt32(&self) -> Result<u32>
pub fn GetInt64(&self) -> Result<i64>
pub fn GetUInt64(&self) -> Result<u64>
pub fn GetSingle(&self) -> Result<f32>
pub fn GetDouble(&self) -> Result<f64>
pub fn GetChar16(&self) -> Result<u16>
pub fn GetBoolean(&self) -> Result<bool>
pub fn GetString(&self) -> Result<HSTRING>
pub fn GetGuid(&self) -> Result<GUID>
pub fn GetDateTime(&self) -> Result<DateTime>
pub fn GetTimeSpan(&self) -> Result<TimeSpan>
pub fn GetPoint(&self) -> Result<Point>
pub fn GetSize(&self) -> Result<Size>
pub fn GetRect(&self) -> Result<Rect>
pub fn GetUInt8Array(&self, value: &mut Array<u8>) -> Result<()>
pub fn GetInt16Array(&self, value: &mut Array<i16>) -> Result<()>
pub fn GetUInt16Array(&self, value: &mut Array<u16>) -> Result<()>
pub fn GetInt32Array(&self, value: &mut Array<i32>) -> Result<()>
pub fn GetUInt32Array(&self, value: &mut Array<u32>) -> Result<()>
pub fn GetInt64Array(&self, value: &mut Array<i64>) -> Result<()>
pub fn GetUInt64Array(&self, value: &mut Array<u64>) -> Result<()>
pub fn GetSingleArray(&self, value: &mut Array<f32>) -> Result<()>
pub fn GetDoubleArray(&self, value: &mut Array<f64>) -> Result<()>
pub fn GetChar16Array(&self, value: &mut Array<u16>) -> Result<()>
pub fn GetBooleanArray(&self, value: &mut Array<bool>) -> Result<()>
pub fn GetStringArray(&self, value: &mut Array<HSTRING>) -> Result<()>
pub fn GetInspectableArray(&self, value: &mut Array<IInspectable>) -> Result<()>
pub fn GetGuidArray(&self, value: &mut Array<GUID>) -> Result<()>
pub fn GetDateTimeArray(&self, value: &mut Array<DateTime>) -> Result<()>
pub fn GetTimeSpanArray(&self, value: &mut Array<TimeSpan>) -> Result<()>
pub fn GetPointArray(&self, value: &mut Array<Point>) -> Result<()>
pub fn GetSizeArray(&self, value: &mut Array<Size>) -> Result<()>
pub fn GetRectArray(&self, value: &mut Array<Rect>) -> Result<()>
Methods from Deref<Target = IInspectable>§
pub fn GetRuntimeClassName(&self) -> Result<HSTRING, Error>
pub fn GetRuntimeClassName(&self) -> Result<HSTRING, Error>
Returns the canonical type name for the underlying object.
pub fn GetTrustLevel(&self) -> Result<i32, Error>
pub fn GetTrustLevel(&self) -> Result<i32, Error>
Gets the trust level of the current object.
Trait Implementations§
§impl CanInto<IInspectable> for IPropertyValue
impl CanInto<IInspectable> for IPropertyValue
§impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReference<T>
impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReference<T>
§impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReferenceArray<T>
impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReferenceArray<T>
§impl CanInto<IUnknown> for IPropertyValue
impl CanInto<IUnknown> for IPropertyValue
§impl Clone for IPropertyValue
impl Clone for IPropertyValue
§fn clone(&self) -> IPropertyValue
fn clone(&self) -> IPropertyValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IPropertyValue
impl Debug for IPropertyValue
§impl Deref for IPropertyValue
impl Deref for IPropertyValue
§impl From<&IPropertyValue> for &IInspectable
impl From<&IPropertyValue> for &IInspectable
§fn from(value: &IPropertyValue) -> Self
fn from(value: &IPropertyValue) -> Self
Converts to this type from the input type.
§impl From<&IPropertyValue> for &IUnknown
impl From<&IPropertyValue> for &IUnknown
§fn from(value: &IPropertyValue) -> Self
fn from(value: &IPropertyValue) -> Self
Converts to this type from the input type.
§impl From<IPropertyValue> for IInspectable
impl From<IPropertyValue> for IInspectable
§fn from(value: IPropertyValue) -> Self
fn from(value: IPropertyValue) -> Self
Converts to this type from the input type.
§impl From<IPropertyValue> for IUnknown
impl From<IPropertyValue> for IUnknown
§fn from(value: IPropertyValue) -> Self
fn from(value: IPropertyValue) -> Self
Converts to this type from the input type.
§impl Interface for IPropertyValue
impl Interface for IPropertyValue
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IPropertyValue
impl PartialEq for IPropertyValue
§fn eq(&self, other: &IPropertyValue) -> bool
fn eq(&self, other: &IPropertyValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IPropertyValue
impl StructuralPartialEq for IPropertyValue
Auto Trait Implementations§
impl Freeze for IPropertyValue
impl RefUnwindSafe for IPropertyValue
impl !Send for IPropertyValue
impl !Sync for IPropertyValue
impl Unpin for IPropertyValue
impl UnwindSafe for IPropertyValue
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)