#[repr(transparent)]pub struct NativeChildProcess_IsolationMode(pub c_uint);Available on crate features
api-12 and api-13 only.Expand description
Enumerates the isolation modes used by the native child process module.
Available since API-level: 13
Tuple Fields§
§0: c_uintImplementations§
Source§impl NativeChildProcess_IsolationMode
impl NativeChildProcess_IsolationMode
Sourcepub const NCP_ISOLATION_MODE_NORMAL: NativeChildProcess_IsolationMode
pub const NCP_ISOLATION_MODE_NORMAL: NativeChildProcess_IsolationMode
Normal isolation mode, parent process shares the same sandbox or internet with the child process.
Sourcepub const NCP_ISOLATION_MODE_ISOLATED: NativeChildProcess_IsolationMode
pub const NCP_ISOLATION_MODE_ISOLATED: NativeChildProcess_IsolationMode
Isolated mode, parent process does not share the same sandbox or internet with the child process.
Trait Implementations§
Source§impl Clone for NativeChildProcess_IsolationMode
impl Clone for NativeChildProcess_IsolationMode
Source§fn clone(&self) -> NativeChildProcess_IsolationMode
fn clone(&self) -> NativeChildProcess_IsolationMode
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 PartialEq for NativeChildProcess_IsolationMode
impl PartialEq for NativeChildProcess_IsolationMode
Source§fn eq(&self, other: &NativeChildProcess_IsolationMode) -> bool
fn eq(&self, other: &NativeChildProcess_IsolationMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NativeChildProcess_IsolationMode
impl Eq for NativeChildProcess_IsolationMode
impl StructuralPartialEq for NativeChildProcess_IsolationMode
Auto Trait Implementations§
impl Freeze for NativeChildProcess_IsolationMode
impl RefUnwindSafe for NativeChildProcess_IsolationMode
impl Send for NativeChildProcess_IsolationMode
impl Sync for NativeChildProcess_IsolationMode
impl Unpin for NativeChildProcess_IsolationMode
impl UnsafeUnpin for NativeChildProcess_IsolationMode
impl UnwindSafe for NativeChildProcess_IsolationMode
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