pub struct ENetOutgoingCommand {
pub reliableSequenceNumber: u16,
pub unreliableSequenceNumber: u16,
pub sentTime: u32,
pub roundTripTimeout: u32,
pub queueTime: u32,
pub fragmentOffset: u32,
pub fragmentLength: u16,
pub sendAttempts: u16,
pub command: ENetProtocol,
pub packet: ENetPacket,
}Fields§
§reliableSequenceNumber: u16§unreliableSequenceNumber: u16§sentTime: u32§roundTripTimeout: u32§queueTime: u32§fragmentOffset: u32§fragmentLength: u16§sendAttempts: u16§command: ENetProtocol§packet: ENetPacketAuto Trait Implementations§
impl Freeze for ENetOutgoingCommand
impl RefUnwindSafe for ENetOutgoingCommand
impl Send for ENetOutgoingCommand
impl Sync for ENetOutgoingCommand
impl Unpin for ENetOutgoingCommand
impl UnsafeUnpin 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