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.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for clone_args
impl Debug for clone_args
sourceimpl Hash for clone_args
impl Hash for clone_args
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moresourceimpl 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
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
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more