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 moreimpl Copy 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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