#[repr(C)]pub struct _ENetOutgoingCommand {
pub outgoingCommandList: ENetListNode,
pub reliableSequenceNumber: u16,
pub unreliableSequenceNumber: u16,
pub sentTime: u32,
pub roundTripTimeout: u32,
pub roundTripTimeoutLimit: u32,
pub fragmentOffset: u32,
pub fragmentLength: u16,
pub sendAttempts: u16,
pub command: ENetProtocol,
pub packet: *mut ENetPacket,
}Fields§
§outgoingCommandList: ENetListNode§reliableSequenceNumber: u16§unreliableSequenceNumber: u16§sentTime: u32§roundTripTimeout: u32§roundTripTimeoutLimit: u32§fragmentOffset: u32§fragmentLength: u16§sendAttempts: u16§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