pub struct PacketDropped {
pub header: Option<PacketHeader>,
pub raw: Option<RawInfo>,
pub datagram_id: Option<u32>,
pub details: Option<String>,
pub trigger: Option<PacketDroppedTrigger>,
}
Fields§
§header: Option<PacketHeader>
§raw: Option<RawInfo>
§datagram_id: Option<u32>
§details: Option<String>
§trigger: Option<PacketDroppedTrigger>
Trait Implementations§
Source§impl Clone for PacketDropped
impl Clone for PacketDropped
Source§fn clone(&self) -> PacketDropped
fn clone(&self) -> PacketDropped
Returns a copy 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 moreSource§impl Debug for PacketDropped
impl Debug for PacketDropped
Source§impl<'de> Deserialize<'de> for PacketDropped
impl<'de> Deserialize<'de> for PacketDropped
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PacketDropped
impl PartialEq for PacketDropped
Source§impl Serialize for PacketDropped
impl Serialize for PacketDropped
impl Eq for PacketDropped
impl StructuralPartialEq for PacketDropped
Auto Trait Implementations§
impl Freeze for PacketDropped
impl RefUnwindSafe for PacketDropped
impl Send for PacketDropped
impl Sync for PacketDropped
impl Unpin for PacketDropped
impl UnwindSafe for PacketDropped
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.