Enum zx::PacketContents
source · pub enum PacketContents {
User(UserPacket),
SignalOne(SignalPacket),
GuestBell(GuestBellPacket),
GuestMem(GuestMemPacket),
GuestIo(GuestIoPacket),
GuestVcpu(GuestVcpuPacket),
Pager(PagerPacket),
Interrupt(InterruptPacket),
PowerTransition(PowerTransitionPacket),
// 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
.
GuestBell(GuestBellPacket)
A guest bell packet
GuestMem(GuestMemPacket)
A guest mem packet
GuestIo(GuestIoPacket)
A guest I/O packet
GuestVcpu(GuestVcpuPacket)
A guest VCPU packet
Pager(PagerPacket)
Pager packets
Interrupt(InterruptPacket)
Interrupt packets
PowerTransition(PowerTransitionPacket)
power transition request packets. This is gated under syscalls-next.h
Trait Implementations§
source§impl Clone for PacketContents
impl Clone for PacketContents
source§fn clone(&self) -> PacketContents
fn clone(&self) -> PacketContents
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 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)