#[repr(C)]pub struct _ENetIncomingCommand {
pub incomingCommandList: ENetListNode,
pub reliableSequenceNumber: u16,
pub unreliableSequenceNumber: u16,
pub command: ENetProtocol,
pub fragmentCount: u32,
pub fragmentsRemaining: u32,
pub fragments: *mut u32,
pub packet: *mut ENetPacket,
}Fields§
§incomingCommandList: ENetListNode§reliableSequenceNumber: u16§unreliableSequenceNumber: u16§command: ENetProtocol§fragmentCount: u32§fragmentsRemaining: u32§fragments: *mut u32§packet: *mut ENetPacketTrait Implementations§
Source§impl Clone for _ENetIncomingCommand
impl Clone for _ENetIncomingCommand
Source§fn clone(&self) -> _ENetIncomingCommand
fn clone(&self) -> _ENetIncomingCommand
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 _ENetIncomingCommand
Auto Trait Implementations§
impl Freeze for _ENetIncomingCommand
impl RefUnwindSafe for _ENetIncomingCommand
impl !Send for _ENetIncomingCommand
impl !Sync for _ENetIncomingCommand
impl Unpin for _ENetIncomingCommand
impl UnwindSafe for _ENetIncomingCommand
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