#[repr(C)]pub struct _ENetOutgoingCommand {
pub outgoingCommandList: ENetListNode,
pub reliableSequenceNumber: enet_uint16,
pub unreliableSequenceNumber: enet_uint16,
pub sentTime: enet_uint32,
pub roundTripTimeout: enet_uint32,
pub queueTime: enet_uint32,
pub fragmentOffset: enet_uint32,
pub fragmentLength: enet_uint16,
pub sendAttempts: enet_uint16,
pub command: ENetProtocol,
pub packet: *mut ENetPacket,
}Fields§
§outgoingCommandList: ENetListNode§reliableSequenceNumber: enet_uint16§unreliableSequenceNumber: enet_uint16§sentTime: enet_uint32§roundTripTimeout: enet_uint32§queueTime: enet_uint32§fragmentOffset: enet_uint32§fragmentLength: enet_uint16§sendAttempts: enet_uint16§command: ENetProtocol§packet: *mut ENetPacketTrait Implementations§
Source§impl Clone for _ENetOutgoingCommand
impl Clone for _ENetOutgoingCommand
Source§fn clone(&self) -> _ENetOutgoingCommand
fn clone(&self) -> _ENetOutgoingCommand
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 _ENetOutgoingCommand
Auto Trait Implementations§
impl Freeze for _ENetOutgoingCommand
impl RefUnwindSafe for _ENetOutgoingCommand
impl !Send for _ENetOutgoingCommand
impl !Sync for _ENetOutgoingCommand
impl Unpin for _ENetOutgoingCommand
impl UnwindSafe for _ENetOutgoingCommand
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