Struct audio_device_windows_sys::Windows::Win32::CoreAudio::IDeviceTopology[][src]

#[repr(transparent)]pub struct IDeviceTopology(_);

Implementations

impl IDeviceTopology[src]

pub unsafe fn GetConnectorCount(&self, pcount: *mut u32) -> HRESULT[src]

pub unsafe fn GetConnector(
    &self,
    nindex: u32,
    ppconnector: *mut Option<IConnector>
) -> HRESULT
[src]

pub unsafe fn GetSubunitCount(&self, pcount: *mut u32) -> HRESULT[src]

pub unsafe fn GetSubunit(
    &self,
    nindex: u32,
    ppsubunit: *mut Option<ISubunit>
) -> HRESULT
[src]

pub unsafe fn GetPartById(
    &self,
    nid: u32,
    pppart: *mut Option<IPart>
) -> HRESULT
[src]

pub unsafe fn GetDeviceId(&self, ppwstrdeviceid: *mut PWSTR) -> HRESULT[src]

pub unsafe fn GetSignalPath<'a>(
    &self,
    pipartfrom: impl IntoParam<'a, IPart>,
    pipartto: impl IntoParam<'a, IPart>,
    brejectmixedpaths: impl IntoParam<'a, BOOL>,
    ppparts: *mut Option<IPartsList>
) -> HRESULT
[src]

Trait Implementations

impl Clone for IDeviceTopology[src]

impl Debug for IDeviceTopology[src]

impl Eq for IDeviceTopology[src]

impl Interface for IDeviceTopology[src]

type Vtable = IDeviceTopology_abi

impl<'a> IntoParam<'a, IUnknown> for IDeviceTopology[src]

impl<'a> IntoParam<'a, IUnknown> for &'a IDeviceTopology[src]

impl PartialEq<IDeviceTopology> for IDeviceTopology[src]

impl StructuralEq for IDeviceTopology[src]

impl StructuralPartialEq for IDeviceTopology[src]

Auto Trait Implementations

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.