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

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

Implementations

impl IPart[src]

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

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

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

pub unsafe fn GetPartType(&self, pparttype: *mut PartType) -> HRESULT[src]

pub unsafe fn GetSubType(&self, psubtype: *mut Guid) -> HRESULT[src]

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

pub unsafe fn GetControlInterface(
    &self,
    nindex: u32,
    ppinterfacedesc: *mut Option<IControlInterface>
) -> HRESULT
[src]

pub unsafe fn EnumPartsIncoming(
    &self,
    ppparts: *mut Option<IPartsList>
) -> HRESULT
[src]

pub unsafe fn EnumPartsOutgoing(
    &self,
    ppparts: *mut Option<IPartsList>
) -> HRESULT
[src]

pub unsafe fn GetTopologyObject(
    &self,
    pptopology: *mut Option<IDeviceTopology>
) -> HRESULT
[src]

pub unsafe fn Activate(
    &self,
    dwclscontext: u32,
    refiid: *const Guid,
    ppvobject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn RegisterControlChangeCallback<'a>(
    &self,
    riid: *const Guid,
    pnotify: impl IntoParam<'a, IControlChangeNotify>
) -> HRESULT
[src]

pub unsafe fn UnregisterControlChangeCallback<'a>(
    &self,
    pnotify: impl IntoParam<'a, IControlChangeNotify>
) -> HRESULT
[src]

Trait Implementations

impl Clone for IPart[src]

impl Debug for IPart[src]

impl Eq for IPart[src]

impl Interface for IPart[src]

type Vtable = IPart_abi

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

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

impl PartialEq<IPart> for IPart[src]

impl StructuralEq for IPart[src]

impl StructuralPartialEq for IPart[src]

Auto Trait Implementations

impl RefUnwindSafe for IPart

impl !Send for IPart

impl !Sync for IPart

impl Unpin for IPart

impl UnwindSafe for IPart

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.