pub struct IReferenceArray<T>(/* private fields */)
where
T: RuntimeType + 'static;
Implementations§
Source§impl<T: RuntimeType + 'static> IReferenceArray<T>
impl<T: RuntimeType + 'static> IReferenceArray<T>
pub fn Value(&self) -> Result<Array<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<Object>) -> 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<()>
Trait Implementations§
Source§impl<T> Clone for IReferenceArray<T>where
T: RuntimeType + 'static + Clone,
impl<T> Clone for IReferenceArray<T>where
T: RuntimeType + 'static + Clone,
Source§fn clone(&self) -> IReferenceArray<T>
fn clone(&self) -> IReferenceArray<T>
Returns a duplicate 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 moreSource§impl<T> Debug for IReferenceArray<T>where
T: RuntimeType + 'static + Debug,
impl<T> Debug for IReferenceArray<T>where
T: RuntimeType + 'static + Debug,
Source§impl<T: RuntimeType + 'static> From<&IReferenceArray<T>> for IPropertyValue
impl<T: RuntimeType + 'static> From<&IReferenceArray<T>> for IPropertyValue
Source§fn from(value: &IReferenceArray<T>) -> Self
fn from(value: &IReferenceArray<T>) -> Self
Converts to this type from the input type.
Source§impl<T: RuntimeType + 'static> From<&IReferenceArray<T>> for Object
impl<T: RuntimeType + 'static> From<&IReferenceArray<T>> for Object
Source§fn from(value: &IReferenceArray<T>) -> Self
fn from(value: &IReferenceArray<T>) -> Self
Converts to this type from the input type.
Source§impl<T: RuntimeType + 'static> From<IReferenceArray<T>> for IPropertyValue
impl<T: RuntimeType + 'static> From<IReferenceArray<T>> for IPropertyValue
Source§fn from(value: IReferenceArray<T>) -> Self
fn from(value: IReferenceArray<T>) -> Self
Converts to this type from the input type.
Source§impl<T: RuntimeType + 'static> From<IReferenceArray<T>> for Object
impl<T: RuntimeType + 'static> From<IReferenceArray<T>> for Object
Source§fn from(value: IReferenceArray<T>) -> Self
fn from(value: IReferenceArray<T>) -> Self
Converts to this type from the input type.
Source§impl<T: RuntimeType + 'static> Interface for IReferenceArray<T>
impl<T: RuntimeType + 'static> Interface for IReferenceArray<T>
const IID: Guid
type Vtable = IReferenceArray_abi<T>
Source§impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for &'a IReferenceArray<T>
impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for &'a IReferenceArray<T>
fn into_param(self) -> Param<'a, IPropertyValue>
Source§impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for IReferenceArray<T>
impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for IReferenceArray<T>
fn into_param(self) -> Param<'a, IPropertyValue>
Source§impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for &'a IReferenceArray<T>
impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for &'a IReferenceArray<T>
fn into_param(self) -> Param<'a, Object>
Source§impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for IReferenceArray<T>
impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for IReferenceArray<T>
fn into_param(self) -> Param<'a, Object>
Source§impl<T> PartialEq for IReferenceArray<T>where
T: RuntimeType + 'static + PartialEq,
impl<T> PartialEq for IReferenceArray<T>where
T: RuntimeType + 'static + PartialEq,
Source§impl<T: RuntimeType + 'static> RuntimeType for IReferenceArray<T>
impl<T: RuntimeType + 'static> RuntimeType for IReferenceArray<T>
const SIGNATURE: ConstBuffer
type DefaultType = Option<IReferenceArray<T>>
impl<T> Eq for IReferenceArray<T>where
T: RuntimeType + 'static + Eq,
impl<T> StructuralPartialEq for IReferenceArray<T>where
T: RuntimeType + 'static,
Auto Trait Implementations§
impl<T> Freeze for IReferenceArray<T>
impl<T> RefUnwindSafe for IReferenceArray<T>where
T: RefUnwindSafe,
impl<T> !Send for IReferenceArray<T>
impl<T> !Sync for IReferenceArray<T>
impl<T> Unpin for IReferenceArray<T>where
T: Unpin,
impl<T> UnwindSafe for IReferenceArray<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
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