#[repr(C)]pub struct _tagEOS_P2P_OnIncomingPacketQueueFullInfo {
pub ClientData: *mut c_void,
pub PacketQueueMaxSizeBytes: u64,
pub PacketQueueCurrentSizeBytes: u64,
pub OverflowPacketLocalUserId: EOS_ProductUserId,
pub OverflowPacketChannel: u8,
pub OverflowPacketSizeBytes: u32,
}Expand description
Structure containing information about the packet queue’s state and the incoming packet that would overflow the queue
Fields§
§ClientData: *mut c_voidClient-specified data passed into AddNotifyIncomingPacketQueueFull
PacketQueueMaxSizeBytes: u64The maximum size in bytes the incoming packet queue is allowed to use
PacketQueueCurrentSizeBytes: u64The current size in bytes the incoming packet queue is currently using
OverflowPacketLocalUserId: EOS_ProductUserIdThe Product User ID of the local user who is receiving the packet that would overflow the queue
OverflowPacketChannel: u8The channel the incoming packet is for
OverflowPacketSizeBytes: u32The size in bytes of the incoming packet (and related metadata) that would overflow the queue
Trait Implementations§
Source§impl Clone for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl Clone for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
Source§fn clone(&self) -> _tagEOS_P2P_OnIncomingPacketQueueFullInfo
fn clone(&self) -> _tagEOS_P2P_OnIncomingPacketQueueFullInfo
Returns a duplicate 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 moreimpl Copy for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl RefUnwindSafe for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl !Send for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl !Sync for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl Unpin for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl UnsafeUnpin for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
impl UnwindSafe for _tagEOS_P2P_OnIncomingPacketQueueFullInfo
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