#[repr(C)]pub enum GSubprocessFlags {
None = 0,
StdinPipe = 1,
StdinInherit = 2,
StdoutPipe = 4,
StdoutSilence = 8,
StderrPipe = 16,
StderrSilence = 32,
StderrMerge = 64,
InheritFds = 128,
}Variants§
None = 0
StdinPipe = 1
StdinInherit = 2
StdoutPipe = 4
StdoutSilence = 8
StderrPipe = 16
StderrSilence = 32
StderrMerge = 64
InheritFds = 128
Auto Trait Implementations§
impl Freeze for GSubprocessFlags
impl RefUnwindSafe for GSubprocessFlags
impl Send for GSubprocessFlags
impl Sync for GSubprocessFlags
impl Unpin for GSubprocessFlags
impl UnwindSafe for GSubprocessFlags
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