#[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 roundTripTimeoutLimit: 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
§roundTripTimeoutLimit: enet_uint32
§fragmentOffset: enet_uint32
§fragmentLength: enet_uint16
§sendAttempts: enet_uint16
§command: ENetProtocol
§packet: *mut ENetPacket
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