#[repr(C, packed(4))]pub struct SteamNetConnectionRealTimeLaneStatus_t {
pub m_cbPendingUnreliable: c_int,
pub m_cbPendingReliable: c_int,
pub m_cbSentUnackedReliable: c_int,
pub _reservePad1: c_int,
pub m_usecQueueTime: SteamNetworkingMicroseconds,
pub reserved: [uint32; 10],
}
Expand description
Quick status of a particular lane
Fields§
§m_cbPendingUnreliable: c_int
§m_cbPendingReliable: c_int
§m_cbSentUnackedReliable: c_int
§_reservePad1: c_int
§m_usecQueueTime: SteamNetworkingMicroseconds
Lane-specific queue time. This value takes into consideration lane priorities and weights, and how much data is queued in each lane, and attempts to predict how any data currently queued will be sent out.
reserved: [uint32; 10]
Trait Implementations§
Source§impl Clone for SteamNetConnectionRealTimeLaneStatus_t
impl Clone for SteamNetConnectionRealTimeLaneStatus_t
Source§fn clone(&self) -> SteamNetConnectionRealTimeLaneStatus_t
fn clone(&self) -> SteamNetConnectionRealTimeLaneStatus_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for SteamNetConnectionRealTimeLaneStatus_t
impl Default for SteamNetConnectionRealTimeLaneStatus_t
Source§fn default() -> SteamNetConnectionRealTimeLaneStatus_t
fn default() -> SteamNetConnectionRealTimeLaneStatus_t
Returns the “default value” for a type. Read more
Source§impl Ord for SteamNetConnectionRealTimeLaneStatus_t
impl Ord for SteamNetConnectionRealTimeLaneStatus_t
Source§fn cmp(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> Ordering
fn cmp(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SteamNetConnectionRealTimeLaneStatus_t
impl PartialEq for SteamNetConnectionRealTimeLaneStatus_t
Source§fn eq(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
fn eq(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for SteamNetConnectionRealTimeLaneStatus_t
impl PartialOrd for SteamNetConnectionRealTimeLaneStatus_t
impl Copy for SteamNetConnectionRealTimeLaneStatus_t
impl Eq for SteamNetConnectionRealTimeLaneStatus_t
impl StructuralPartialEq for SteamNetConnectionRealTimeLaneStatus_t
Auto Trait Implementations§
impl Freeze for SteamNetConnectionRealTimeLaneStatus_t
impl RefUnwindSafe for SteamNetConnectionRealTimeLaneStatus_t
impl Send for SteamNetConnectionRealTimeLaneStatus_t
impl Sync for SteamNetConnectionRealTimeLaneStatus_t
impl Unpin for SteamNetConnectionRealTimeLaneStatus_t
impl UnwindSafe for SteamNetConnectionRealTimeLaneStatus_t
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