Struct steamworks_sys::ISteamNetworkingUtils[][src]

#[repr(C)]pub struct ISteamNetworkingUtils {
    pub vtable_: *const ISteamNetworkingUtils__bindgen_vtable,
}

Misc networking utilities for checking the local networking environment and estimating pings.

Fields

vtable_: *const ISteamNetworkingUtils__bindgen_vtable

Implementations

impl ISteamNetworkingUtils[src]

pub unsafe fn SetGlobalConfigValueInt32(
    &mut self,
    eValue: ESteamNetworkingConfigValue,
    val: int32
) -> bool
[src]

pub unsafe fn SetGlobalConfigValueFloat(
    &mut self,
    eValue: ESteamNetworkingConfigValue,
    val: f32
) -> bool
[src]

pub unsafe fn SetGlobalConfigValueString(
    &mut self,
    eValue: ESteamNetworkingConfigValue,
    val: *const c_char
) -> bool
[src]

pub unsafe fn SetGlobalConfigValuePtr(
    &mut self,
    eValue: ESteamNetworkingConfigValue,
    val: *mut c_void
) -> bool
[src]

pub unsafe fn SetConnectionConfigValueInt32(
    &mut self,
    hConn: HSteamNetConnection,
    eValue: ESteamNetworkingConfigValue,
    val: int32
) -> bool
[src]

pub unsafe fn SetConnectionConfigValueFloat(
    &mut self,
    hConn: HSteamNetConnection,
    eValue: ESteamNetworkingConfigValue,
    val: f32
) -> bool
[src]

pub unsafe fn SetConnectionConfigValueString(
    &mut self,
    hConn: HSteamNetConnection,
    eValue: ESteamNetworkingConfigValue,
    val: *const c_char
) -> bool
[src]

pub unsafe fn SetGlobalCallback_SteamNetConnectionStatusChanged(
    &mut self,
    fnCallback: FnSteamNetConnectionStatusChanged
) -> bool
[src]

pub unsafe fn SetGlobalCallback_SteamNetAuthenticationStatusChanged(
    &mut self,
    fnCallback: FnSteamNetAuthenticationStatusChanged
) -> bool
[src]

pub unsafe fn SetGlobalCallback_SteamRelayNetworkStatusChanged(
    &mut self,
    fnCallback: FnSteamRelayNetworkStatusChanged
) -> bool
[src]

pub unsafe fn SetGlobalCallback_MessagesSessionRequest(
    &mut self,
    fnCallback: FnSteamNetworkingMessagesSessionRequest
) -> bool
[src]

pub unsafe fn SetGlobalCallback_MessagesSessionFailed(
    &mut self,
    fnCallback: FnSteamNetworkingMessagesSessionFailed
) -> bool
[src]

pub unsafe fn SetConfigValueStruct(
    &mut self,
    opt: *const SteamNetworkingConfigValue_t,
    eScopeType: ESteamNetworkingConfigScope,
    scopeObj: isize
) -> bool
[src]

pub unsafe fn destruct(&mut self)[src]

Trait Implementations

impl Debug for ISteamNetworkingUtils[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.