Struct windows_webview2::Windows::Foundation::IReferenceArray[][src]

#[repr(transparent)]pub struct IReferenceArray<T>(_, _)
where
    T: RuntimeType + 'static
;

Implementations

impl<T: RuntimeType + 'static> IReferenceArray<T>[src]

pub fn Value(&self) -> Result<Array<T>>[src]

pub fn Type(&self) -> Result<PropertyType>[src]

pub fn IsNumericScalar(&self) -> Result<bool>[src]

pub fn GetUInt8(&self) -> Result<u8>[src]

pub fn GetInt16(&self) -> Result<i16>[src]

pub fn GetUInt16(&self) -> Result<u16>[src]

pub fn GetInt32(&self) -> Result<i32>[src]

pub fn GetUInt32(&self) -> Result<u32>[src]

pub fn GetInt64(&self) -> Result<i64>[src]

pub fn GetUInt64(&self) -> Result<u64>[src]

pub fn GetSingle(&self) -> Result<f32>[src]

pub fn GetDouble(&self) -> Result<f64>[src]

pub fn GetChar16(&self) -> Result<u16>[src]

pub fn GetBoolean(&self) -> Result<bool>[src]

pub fn GetString(&self) -> Result<HString>[src]

pub fn GetGuid(&self) -> Result<Guid>[src]

pub fn GetDateTime(&self) -> Result<DateTime>[src]

pub fn GetTimeSpan(&self) -> Result<TimeSpan>[src]

pub fn GetPoint(&self) -> Result<Point>[src]

pub fn GetSize(&self) -> Result<Size>[src]

pub fn GetRect(&self) -> Result<Rect>[src]

pub fn GetUInt8Array(&self, value: &mut Array<u8>) -> Result<()>[src]

pub fn GetInt16Array(&self, value: &mut Array<i16>) -> Result<()>[src]

pub fn GetUInt16Array(&self, value: &mut Array<u16>) -> Result<()>[src]

pub fn GetInt32Array(&self, value: &mut Array<i32>) -> Result<()>[src]

pub fn GetUInt32Array(&self, value: &mut Array<u32>) -> Result<()>[src]

pub fn GetInt64Array(&self, value: &mut Array<i64>) -> Result<()>[src]

pub fn GetUInt64Array(&self, value: &mut Array<u64>) -> Result<()>[src]

pub fn GetSingleArray(&self, value: &mut Array<f32>) -> Result<()>[src]

pub fn GetDoubleArray(&self, value: &mut Array<f64>) -> Result<()>[src]

pub fn GetChar16Array(&self, value: &mut Array<u16>) -> Result<()>[src]

pub fn GetBooleanArray(&self, value: &mut Array<bool>) -> Result<()>[src]

pub fn GetStringArray(&self, value: &mut Array<HString>) -> Result<()>[src]

pub fn GetInspectableArray(&self, value: &mut Array<Object>) -> Result<()>[src]

pub fn GetGuidArray(&self, value: &mut Array<Guid>) -> Result<()>[src]

pub fn GetDateTimeArray(&self, value: &mut Array<DateTime>) -> Result<()>[src]

pub fn GetTimeSpanArray(&self, value: &mut Array<TimeSpan>) -> Result<()>[src]

pub fn GetPointArray(&self, value: &mut Array<Point>) -> Result<()>[src]

pub fn GetSizeArray(&self, value: &mut Array<Size>) -> Result<()>[src]

pub fn GetRectArray(&self, value: &mut Array<Rect>) -> Result<()>[src]

Trait Implementations

impl<T: Clone> Clone for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

impl<T: Debug> Debug for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

impl<T: Eq> Eq for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

impl<T: RuntimeType + 'static> From<&'_ IReferenceArray<T>> for IPropertyValue[src]

impl<T: RuntimeType + 'static> From<IReferenceArray<T>> for IPropertyValue[src]

impl<T: RuntimeType + 'static> Interface for IReferenceArray<T>[src]

type Vtable = IReferenceArray_abi<T>

impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for IReferenceArray<T>[src]

impl<'a, T: RuntimeType + 'static> IntoParam<'a, IPropertyValue> for &'a IReferenceArray<T>[src]

impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for IReferenceArray<T>[src]

impl<'a, T: RuntimeType + 'static> IntoParam<'a, Object> for &'a IReferenceArray<T>[src]

impl<T: PartialEq> PartialEq<IReferenceArray<T>> for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

impl<T: RuntimeType + 'static> RuntimeType for IReferenceArray<T>[src]

type DefaultType = Option<Self>

impl<T> StructuralEq for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

impl<T> StructuralPartialEq for IReferenceArray<T> where
    T: RuntimeType + 'static, 
[src]

Auto Trait Implementations

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

impl<T> Abi for T where
    T: Interface
[src]

type Abi = *mut c_void

The abi representation of the implementing type. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> IntoParam<'a, T> for T where
    T: Abi
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.