[][src]Struct windows_media_transcoding_bindings::windows::foundation::IReference

#[repr(transparent)]pub struct IReference<T> where
    T: RuntimeType + 'static, 
{ /* fields omitted */ }

Implementations

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

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

type Abi = RawComPtr<Self>

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

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

type VTable = abi_IReference<T>

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

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

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

impl<T: RuntimeType + 'static, '_> From<&'_ IReference<T>> for Object[src]

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

impl<T: RuntimeType + 'static> From<IReference<T>> for Object[src]

impl<'a, T: RuntimeType + 'static> Into<Param<'a, IPropertyValue>> for IReference<T>[src]

impl<'a, T: RuntimeType + 'static> Into<Param<'a, IPropertyValue>> for &'a IReference<T>[src]

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

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

Auto Trait Implementations

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: RefUnwindSafe + UnwindSafe

Blanket Implementations

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<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.