Struct IHostThreadpoolManager_Vtbl
#[repr(C)]pub struct IHostThreadpoolManager_Vtbl {
pub base__: IUnknown_Vtbl,
pub QueueUserWorkItem: unsafe extern "system" fn(_: *mut c_void, _: LPTHREAD_START_ROUTINE, _: *const c_void, _: u32) -> HRESULT,
pub SetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub GetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub GetAvailableThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub SetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub GetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§QueueUserWorkItem: unsafe extern "system" fn(_: *mut c_void, _: LPTHREAD_START_ROUTINE, _: *const c_void, _: u32) -> HRESULT
§SetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT
§GetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§GetAvailableThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§SetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT
§GetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
Implementations§
§impl IHostThreadpoolManager_Vtbl
impl IHostThreadpoolManager_Vtbl
pub const fn new<Identity: IHostThreadpoolManager_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IHostThreadpoolManager_Vtbl
impl RefUnwindSafe for IHostThreadpoolManager_Vtbl
impl Send for IHostThreadpoolManager_Vtbl
impl Sync for IHostThreadpoolManager_Vtbl
impl Unpin for IHostThreadpoolManager_Vtbl
impl UnwindSafe for IHostThreadpoolManager_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