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
sourceimpl Clone for clone_args
impl Clone for clone_args
sourcefn clone(&self) -> clone_args
fn clone(&self) -> clone_args
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for clone_args
impl Debug for clone_args
sourceimpl Hash for clone_args
impl Hash for clone_args
sourceimpl PartialEq<clone_args> for clone_args
impl PartialEq<clone_args> for clone_args
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &clone_args) -> bool
fn ne(&self, other: &clone_args) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more