Struct IThreadPoolKnobs_Vtbl
#[repr(C)]pub struct IThreadPoolKnobs_Vtbl {
pub base__: IUnknown_Vtbl,
pub GetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
pub GetCurrentThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
pub SetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
pub GetDeleteDelay: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
pub SetDeleteDelay: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
pub GetMaxQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
pub GetCurrentQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT,
pub SetMaxQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
pub SetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
pub SetQueueDepth: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§GetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT
§GetCurrentThreads: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT
§SetMaxThreads: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT
§GetDeleteDelay: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT
§SetDeleteDelay: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT
§GetMaxQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT
§GetCurrentQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT
§SetMaxQueuedRequests: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT
§SetMinThreads: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT
§SetQueueDepth: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT
Implementations§
§impl IThreadPoolKnobs_Vtbl
impl IThreadPoolKnobs_Vtbl
pub const fn new<Identity: IThreadPoolKnobs_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IThreadPoolKnobs_Vtbl
impl RefUnwindSafe for IThreadPoolKnobs_Vtbl
impl Send for IThreadPoolKnobs_Vtbl
impl Sync for IThreadPoolKnobs_Vtbl
impl Unpin for IThreadPoolKnobs_Vtbl
impl UnwindSafe for IThreadPoolKnobs_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