[−][src]Struct windows_media_transcoding_bindings::windows::foundation::IReference
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>
fn get_abi(&self) -> Self::Abi[src]
fn set_abi(&mut self) -> *mut Self::Abi[src]
fn from_abi(abi: &Self::Abi) -> &Self
fn from_mut_abi(abi: &mut Self::Abi) -> &mut Self
unsafe fn slice_from_abi<'a>(abi: *const Self::Abi, len: usize) -> &'a [Self]
unsafe fn slice_from_mut_abi<'a>(
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
fn into_abi(self) -> Self::Abi
impl<T: RuntimeType + 'static> Clone for IReference<T>[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T: RuntimeType + 'static> ComInterface for IReference<T>[src]
type VTable = abi_IReference<T>
fn iid() -> Guid[src]
fn as_iunknown(&self) -> Option<NonNullRawComPtr<IUnknown>>
fn query<Into>(&self) -> Into where
Into: ComInterface,
Into: ComInterface,
fn is_null(&self) -> bool
fn is_agile(&self) -> bool
unsafe fn raw_query<T>(&self, iid: &Guid, ppv: &mut T) where
T: ComInterface,
T: ComInterface,
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]
fn from(value: &IReference<T>) -> Self[src]
impl<T: RuntimeType + 'static, '_> From<&'_ IReference<T>> for Object[src]
fn from(value: &IReference<T>) -> Self[src]
impl<T: RuntimeType + 'static> From<IReference<T>> for IPropertyValue[src]
fn from(value: IReference<T>) -> Self[src]
impl<T: RuntimeType + 'static> From<IReference<T>> for Object[src]
fn from(value: IReference<T>) -> Self[src]
impl<'a, T: RuntimeType + 'static> Into<Param<'a, IPropertyValue>> for IReference<T>[src]
fn into(self) -> Param<'a, IPropertyValue>[src]
impl<'a, T: RuntimeType + 'static> Into<Param<'a, IPropertyValue>> for &'a IReference<T>[src]
fn into(self) -> Param<'a, IPropertyValue>[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,
T: RefUnwindSafe,
impl<T> !Send for IReference<T>
impl<T> !Sync for IReference<T>
impl<T> Unpin for IReference<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for IReference<T> where
T: RefUnwindSafe + UnwindSafe,
T: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,