Struct IStreamSocketControl_Vtbl
#[repr(C)]pub struct IStreamSocketControl_Vtbl {
pub base__: IInspectable_Vtbl,
pub NoDelay: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT,
pub SetNoDelay: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT,
pub KeepAlive: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT,
pub SetKeepAlive: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT,
pub OutboundBufferSizeInBytes: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT,
pub SetOutboundBufferSizeInBytes: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT,
pub QualityOfService: unsafe extern "system" fn(_: *mut c_void, _: *mut SocketQualityOfService) -> HRESULT,
pub SetQualityOfService: unsafe extern "system" fn(_: *mut c_void, _: SocketQualityOfService) -> HRESULT,
pub OutboundUnicastHopLimit: unsafe extern "system" fn(_: *mut c_void, _: *mut u8) -> HRESULT,
pub SetOutboundUnicastHopLimit: unsafe extern "system" fn(_: *mut c_void, _: u8) -> HRESULT,
}Fields§
§base__: IInspectable_Vtbl§NoDelay: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§SetNoDelay: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT§KeepAlive: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§SetKeepAlive: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT§OutboundBufferSizeInBytes: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetOutboundBufferSizeInBytes: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§QualityOfService: unsafe extern "system" fn(_: *mut c_void, _: *mut SocketQualityOfService) -> HRESULT§SetQualityOfService: unsafe extern "system" fn(_: *mut c_void, _: SocketQualityOfService) -> HRESULT§OutboundUnicastHopLimit: unsafe extern "system" fn(_: *mut c_void, _: *mut u8) -> HRESULT§SetOutboundUnicastHopLimit: unsafe extern "system" fn(_: *mut c_void, _: u8) -> HRESULTAuto Trait Implementations§
impl Freeze for IStreamSocketControl_Vtbl
impl RefUnwindSafe for IStreamSocketControl_Vtbl
impl Send for IStreamSocketControl_Vtbl
impl Sync for IStreamSocketControl_Vtbl
impl Unpin for IStreamSocketControl_Vtbl
impl UnwindSafe for IStreamSocketControl_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