Struct IServicePoolConfig_Vtbl
#[repr(C)]pub struct IServicePoolConfig_Vtbl {
pub base__: IUnknown_Vtbl,
pub SetMaxPoolSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub MaxPoolSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub SetMinPoolSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub MinPoolSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub SetCreationTimeout: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub CreationTimeout: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub SetTransactionAffinity: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT,
pub TransactionAffinity: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT,
pub SetClassFactory: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub ClassFactory: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§SetMaxPoolSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT
§MaxPoolSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§SetMinPoolSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT
§MinPoolSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§SetCreationTimeout: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT
§CreationTimeout: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT
§SetTransactionAffinity: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT
§TransactionAffinity: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT
§SetClassFactory: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§ClassFactory: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT
Implementations§
§impl IServicePoolConfig_Vtbl
impl IServicePoolConfig_Vtbl
pub const fn new<Identity: IServicePoolConfig_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IServicePoolConfig_Vtbl
impl RefUnwindSafe for IServicePoolConfig_Vtbl
impl Send for IServicePoolConfig_Vtbl
impl Sync for IServicePoolConfig_Vtbl
impl Unpin for IServicePoolConfig_Vtbl
impl UnwindSafe for IServicePoolConfig_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