Struct rustpython_vm::stdlib::errno::errors::clone_args
source · #[repr(C, align(8))]pub struct clone_args {
pub flags: u64,
pub pidfd: u64,
pub child_tid: u64,
pub parent_tid: u64,
pub exit_signal: u64,
pub stack: u64,
pub stack_size: u64,
pub tls: u64,
pub set_tid: u64,
pub set_tid_size: u64,
pub cgroup: u64,
}
Fields§
§flags: u64
§pidfd: u64
§child_tid: u64
§parent_tid: u64
§exit_signal: u64
§stack: u64
§stack_size: u64
§tls: u64
§set_tid: u64
§set_tid_size: u64
§cgroup: u64
Trait Implementations§
source§impl Clone for clone_args
impl Clone for clone_args
source§fn clone(&self) -> clone_args
fn clone(&self) -> clone_args
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 clone_args
impl Debug for clone_args
source§impl Hash for clone_args
impl Hash for clone_args
source§impl PartialEq<clone_args> for clone_args
impl PartialEq<clone_args> for clone_args
source§fn eq(&self, other: &clone_args) -> bool
fn eq(&self, other: &clone_args) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for clone_args
impl Eq for clone_args
impl StructuralEq for clone_args
impl StructuralPartialEq for clone_args
Auto Trait Implementations§
impl RefUnwindSafe for clone_args
impl Send for clone_args
impl Sync for clone_args
impl Unpin for clone_args
impl UnwindSafe for clone_args
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> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.