Struct libc::clone_args
source · #[repr(C)]#[repr(align(8))]pub struct clone_args {
pub flags: c_ulonglong,
pub pidfd: c_ulonglong,
pub child_tid: c_ulonglong,
pub parent_tid: c_ulonglong,
pub exit_signal: c_ulonglong,
pub stack: c_ulonglong,
pub stack_size: c_ulonglong,
pub tls: c_ulonglong,
pub set_tid: c_ulonglong,
pub set_tid_size: c_ulonglong,
pub cgroup: c_ulonglong,
}
Fields§
§flags: c_ulonglong
§pidfd: c_ulonglong
§child_tid: c_ulonglong
§parent_tid: c_ulonglong
§exit_signal: c_ulonglong
§stack: c_ulonglong
§stack_size: c_ulonglong
§tls: c_ulonglong
§set_tid: c_ulonglong
§set_tid_size: c_ulonglong
§cgroup: c_ulonglong
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