pub struct UnixThreadCommand {
pub cmd: u32,
pub cmdsize: u32,
pub flavor: Flavor,
pub count: u32,
pub state: ThreadState,
}
Fields§
§cmd: u32
§cmdsize: u32
§flavor: Flavor
§count: u32
size of the thread state data, in number of 32-bit integers. The thread state data structure must be fully padded to 32-bit alignment.
state: ThreadState
Implementations§
Trait Implementations§
Source§impl Clone for UnixThreadCommand
impl Clone for UnixThreadCommand
Source§fn clone(&self) -> UnixThreadCommand
fn clone(&self) -> UnixThreadCommand
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 UnixThreadCommand
impl Debug for UnixThreadCommand
Source§impl PartialEq for UnixThreadCommand
impl PartialEq for UnixThreadCommand
impl Eq for UnixThreadCommand
impl StructuralPartialEq for UnixThreadCommand
Auto Trait Implementations§
impl Freeze for UnixThreadCommand
impl RefUnwindSafe for UnixThreadCommand
impl Send for UnixThreadCommand
impl Sync for UnixThreadCommand
impl Unpin for UnixThreadCommand
impl UnwindSafe for UnixThreadCommand
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