[][src]Struct tox_core::net_crypto::SentPacket

pub struct SentPacket {
    pub data: Vec<u8>,
    pub sent_time: Instant,
    pub requested: bool,
}

Sent but not confirmed data packet that is stored in PacketsArray

Fields

data: Vec<u8>

Packet data

sent_time: Instant

Time when we sent this packet last time

requested: bool

True if a request was received for this packet and rtt was elapsed at that moment

Implementations

impl SentPacket[src]

pub fn new(data: Vec<u8>) -> SentPacket[src]

Create new SentPacket

Trait Implementations

impl Clone for SentPacket[src]

impl Debug for SentPacket[src]

impl Eq for SentPacket[src]

impl PartialEq<SentPacket> for SentPacket[src]

impl StructuralEq for SentPacket[src]

impl StructuralPartialEq for SentPacket[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.