Struct windows::Foundation::IReference
pub struct IReference<T>(/* private fields */)
where
T: RuntimeType + 'static;
Implementations§
§impl<T: RuntimeType + 'static> IReference<T>
impl<T: RuntimeType + 'static> IReference<T>
pub fn Value(&self) -> Result<T>
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<T: RuntimeType + 'static> CanInto<IInspectable> for IReference<T>
impl<T: RuntimeType + 'static> CanInto<IInspectable> for IReference<T>
§impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReference<T>
impl<T: RuntimeType + 'static> CanInto<IPropertyValue> for IReference<T>
§impl<T: RuntimeType + 'static> CanInto<IUnknown> for IReference<T>
impl<T: RuntimeType + 'static> CanInto<IUnknown> for IReference<T>
§impl<T> Clone for IReference<T>where
T: RuntimeType + 'static + Clone,
impl<T> Clone for IReference<T>where
T: RuntimeType + 'static + Clone,
§fn clone(&self) -> IReference<T>
fn clone(&self) -> IReference<T>
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<T> Debug for IReference<T>where
T: RuntimeType + 'static + Debug,
impl<T> Debug for IReference<T>where
T: RuntimeType + 'static + Debug,
§impl<T: RuntimeType + 'static> Deref for IReference<T>
impl<T: RuntimeType + 'static> Deref for IReference<T>
§impl<T: RuntimeType + 'static> Interface for IReference<T>
impl<T: RuntimeType + 'static> Interface for IReference<T>
§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<T> PartialEq for IReference<T>where
T: RuntimeType + 'static + PartialEq,
impl<T> PartialEq for IReference<T>where
T: RuntimeType + 'static + PartialEq,
§fn eq(&self, other: &IReference<T>) -> bool
fn eq(&self, other: &IReference<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T> Eq for IReference<T>where
T: RuntimeType + 'static + Eq,
impl<T> StructuralPartialEq for IReference<T>where
T: RuntimeType + 'static,
Auto Trait Implementations§
impl<T> Freeze for IReference<T>
impl<T> RefUnwindSafe for IReference<T>where
T: RefUnwindSafe,
impl<T> !Send for IReference<T>
impl<T> !Sync for IReference<T>
impl<T> Unpin for IReference<T>where
T: Unpin,
impl<T> UnwindSafe for IReference<T>where
T: UnwindSafe,
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
)