#[repr(C)]pub struct NativeChildProcess_Fd {
pub fdName: *mut c_char,
pub fd: i32,
pub next: *mut NativeChildProcess_Fd,
}Available on crate features
api-12 and api-13 only.Expand description
The info of the file descriptors passed to child process.
Available since API-level: 13
Fields§
§fdName: *mut c_charthe key of the file descriptor.
fd: i32the value of the file descriptor.
next: *mut NativeChildProcess_Fdthe next pointer of the linked list.
Trait Implementations§
Source§impl Clone for NativeChildProcess_Fd
impl Clone for NativeChildProcess_Fd
Source§fn clone(&self) -> NativeChildProcess_Fd
fn clone(&self) -> NativeChildProcess_Fd
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_Fd
impl Debug for NativeChildProcess_Fd
impl Copy for NativeChildProcess_Fd
Auto Trait Implementations§
impl Freeze for NativeChildProcess_Fd
impl RefUnwindSafe for NativeChildProcess_Fd
impl !Send for NativeChildProcess_Fd
impl !Sync for NativeChildProcess_Fd
impl Unpin for NativeChildProcess_Fd
impl UnsafeUnpin for NativeChildProcess_Fd
impl UnwindSafe for NativeChildProcess_Fd
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