#[repr(C)]
pub struct IDiscRecorder2_Vtbl {
Show 22 fields pub base__: IDispatch_Vtbl, pub EjectMedia: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub CloseTray: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub AcquireExclusiveAccess: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL, _: MaybeUninit<BSTR>) -> HRESULT, pub ReleaseExclusiveAccess: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub DisableMcn: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub EnableMcn: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub InitializeDiscRecorder: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT, pub ActiveDiscRecorder: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub VendorId: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub ProductId: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub ProductRevision: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub VolumeName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub VolumePathNames: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub DeviceCanLoadMedia: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub LegacyDeviceNumber: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT, pub SupportedFeaturePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub CurrentFeaturePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub SupportedProfiles: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub CurrentProfiles: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub SupportedModePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub ExclusiveAccessOwner: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT,
}

Fields§

§base__: IDispatch_Vtbl§EjectMedia: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§CloseTray: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§AcquireExclusiveAccess: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL, _: MaybeUninit<BSTR>) -> HRESULT§ReleaseExclusiveAccess: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§DisableMcn: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§EnableMcn: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§InitializeDiscRecorder: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT§ActiveDiscRecorder: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§VendorId: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§ProductId: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§ProductRevision: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§VolumeName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§VolumePathNames: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§DeviceCanLoadMedia: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§LegacyDeviceNumber: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§SupportedFeaturePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§CurrentFeaturePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§SupportedProfiles: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§CurrentProfiles: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§SupportedModePages: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§ExclusiveAccessOwner: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT

Implementations§

§

impl IDiscRecorder2_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IDiscRecorder2_Impl, const OFFSET: isize>( ) -> IDiscRecorder2_Vtbl

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.