Struct IMFSensorProfileCollection_Vtbl
#[repr(C)]pub struct IMFSensorProfileCollection_Vtbl {
pub base__: IUnknown_Vtbl,
pub GetProfileCount: unsafe extern "system" fn(_: *mut c_void) -> u32,
pub GetProfile: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT,
pub AddProfile: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub FindProfile: unsafe extern "system" fn(_: *mut c_void, _: *const SENSORPROFILEID, _: *mut *mut c_void) -> HRESULT,
pub RemoveProfileByIndex: unsafe extern "system" fn(_: *mut c_void, _: u32),
pub RemoveProfile: unsafe extern "system" fn(_: *mut c_void, _: *const SENSORPROFILEID),
}
Fields§
§base__: IUnknown_Vtbl
§GetProfileCount: unsafe extern "system" fn(_: *mut c_void) -> u32
§GetProfile: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT
§AddProfile: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§FindProfile: unsafe extern "system" fn(_: *mut c_void, _: *const SENSORPROFILEID, _: *mut *mut c_void) -> HRESULT
§RemoveProfileByIndex: unsafe extern "system" fn(_: *mut c_void, _: u32)
§RemoveProfile: unsafe extern "system" fn(_: *mut c_void, _: *const SENSORPROFILEID)
Implementations§
§impl IMFSensorProfileCollection_Vtbl
impl IMFSensorProfileCollection_Vtbl
pub const fn new<Identity: IMFSensorProfileCollection_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IMFSensorProfileCollection_Vtbl
impl RefUnwindSafe for IMFSensorProfileCollection_Vtbl
impl Send for IMFSensorProfileCollection_Vtbl
impl Sync for IMFSensorProfileCollection_Vtbl
impl Unpin for IMFSensorProfileCollection_Vtbl
impl UnwindSafe for IMFSensorProfileCollection_Vtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more