#[repr(C)]pub struct NativeChildProcess_Args {
pub entryParams: *mut c_char,
pub fdList: NativeChildProcess_FdList,
}Available on crate features
api-12 and api-13 only.Expand description
The arguments passed to the child process.
Available since API-level: 13
Fields§
§entryParams: *mut c_charthe entry parameter.
fdList: NativeChildProcess_FdListthe list of the info of the file descriptors passed to child process.
For details, see NativeChildProcess_FdList.
Trait Implementations§
Source§impl Clone for NativeChildProcess_Args
impl Clone for NativeChildProcess_Args
Source§fn clone(&self) -> NativeChildProcess_Args
fn clone(&self) -> NativeChildProcess_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 NativeChildProcess_Args
impl Debug for NativeChildProcess_Args
impl Copy for NativeChildProcess_Args
Auto Trait Implementations§
impl Freeze for NativeChildProcess_Args
impl RefUnwindSafe for NativeChildProcess_Args
impl !Send for NativeChildProcess_Args
impl !Sync for NativeChildProcess_Args
impl Unpin for NativeChildProcess_Args
impl UnsafeUnpin for NativeChildProcess_Args
impl UnwindSafe for NativeChildProcess_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