#[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
sourceimpl Clone for SteamNetConnectionRealTimeLaneStatus_t
impl Clone for SteamNetConnectionRealTimeLaneStatus_t
sourcefn clone(&self) -> SteamNetConnectionRealTimeLaneStatus_t
fn clone(&self) -> SteamNetConnectionRealTimeLaneStatus_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for SteamNetConnectionRealTimeLaneStatus_t
impl Default for SteamNetConnectionRealTimeLaneStatus_t
sourcefn default() -> SteamNetConnectionRealTimeLaneStatus_t
fn default() -> SteamNetConnectionRealTimeLaneStatus_t
Returns the “default value” for a type. Read more
sourceimpl Ord for SteamNetConnectionRealTimeLaneStatus_t
impl Ord for SteamNetConnectionRealTimeLaneStatus_t
sourcefn cmp(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> Ordering
fn cmp(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<SteamNetConnectionRealTimeLaneStatus_t> for SteamNetConnectionRealTimeLaneStatus_t
impl PartialEq<SteamNetConnectionRealTimeLaneStatus_t> for SteamNetConnectionRealTimeLaneStatus_t
sourcefn eq(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
fn eq(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
fn ne(&self, other: &SteamNetConnectionRealTimeLaneStatus_t) -> bool
This method tests for !=
.
sourceimpl PartialOrd<SteamNetConnectionRealTimeLaneStatus_t> for SteamNetConnectionRealTimeLaneStatus_t
impl PartialOrd<SteamNetConnectionRealTimeLaneStatus_t> for SteamNetConnectionRealTimeLaneStatus_t
sourcefn partial_cmp(
&self,
other: &SteamNetConnectionRealTimeLaneStatus_t
) -> Option<Ordering>
fn partial_cmp(
&self,
other: &SteamNetConnectionRealTimeLaneStatus_t
) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for SteamNetConnectionRealTimeLaneStatus_t
impl Eq for SteamNetConnectionRealTimeLaneStatus_t
impl StructuralEq for SteamNetConnectionRealTimeLaneStatus_t
impl StructuralPartialEq for SteamNetConnectionRealTimeLaneStatus_t
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more