#[repr(C)]pub struct exec_spawn_args {
pub prog: *const c_char,
pub args: *const *const c_char,
pub env: *const *const c_char,
pub fd_binds: *const binding_info,
pub fd_bind_count: usize,
pub flags: exec_flags,
}Fields§
§prog: *const c_char§args: *const *const c_char§env: *const *const c_char§fd_binds: *const binding_info§fd_bind_count: usize§flags: exec_flagsTrait Implementations§
Source§impl Clone for exec_spawn_args
impl Clone for exec_spawn_args
Source§fn clone(&self) -> exec_spawn_args
fn clone(&self) -> exec_spawn_args
Returns a duplicate 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 exec_spawn_args
impl Debug for exec_spawn_args
Source§impl Default for exec_spawn_args
impl Default for exec_spawn_args
impl Copy for exec_spawn_args
Auto Trait Implementations§
impl Freeze for exec_spawn_args
impl RefUnwindSafe for exec_spawn_args
impl !Send for exec_spawn_args
impl StoreCopy for exec_spawn_args
impl !Sync for exec_spawn_args
impl Unpin for exec_spawn_args
impl UnwindSafe for exec_spawn_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