pub enum PacketContents {
User(UserPacket),
SignalOne(SignalPacket),
SignalRep(SignalPacket),
// some variants omitted
}
Expand description
The contents of a Packet
.
Variants§
User(UserPacket)
A user-generated packet.
SignalOne(SignalPacket)
A one-shot signal packet generated via object_wait_async
.
SignalRep(SignalPacket)
A repeating signal packet generated via object_wait_async
.
Trait Implementations§
Source§impl Clone for PacketContents
impl Clone for PacketContents
Source§fn clone(&self) -> PacketContents
fn clone(&self) -> PacketContents
Returns a duplicate 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 PacketContents
impl Debug for PacketContents
impl Copy for PacketContents
Auto Trait Implementations§
impl Freeze for PacketContents
impl RefUnwindSafe for PacketContents
impl Send for PacketContents
impl Sync for PacketContents
impl Unpin for PacketContents
impl UnwindSafe for PacketContents
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