[][src]Struct naia_shared::AckManager

pub struct AckManager { /* fields omitted */ }

Keeps track of sent & received packets, and contains ack information that is copied into the standard header on each outgoing packet

Implementations

impl AckManager[src]

pub fn new() -> Self[src]

Create a new AckManager

pub fn local_sequence_num(&self) -> SequenceNumber[src]

Get the index of the next outgoing packet

pub fn process_incoming<T: EventType>(
    &mut self,
    payload: &[u8],
    event_manager: &mut EventManager<T>,
    entity_notifiable: &mut Option<&mut dyn EntityNotifiable>
) -> Box<[u8]>
[src]

Process an incoming packet, handle notifications of delivered / dropped packets

pub fn process_outgoing(
    &mut self,
    packet_type: PacketType,
    payload: &[u8]
) -> Box<[u8]>
[src]

Process an outgoing packet, adding the correct header which includes ack information, and returning the bytes needed to send over the wire

Trait Implementations

impl Debug for AckManager[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.