pub struct SpawnedProcess {
pub stdin: Option<ChildStdin>,
/* private fields */
}Expand description
Handle to a spawned process that requires stdin interaction.
This wraps a std::process::Child to expose only the domain-relevant
surface: stdin writing and process completion. The raw Child is kept
private to prevent raw effect types from leaking into domain code.
Fields§
§stdin: Option<ChildStdin>The stdin handle for writing input to the process.
Implementations§
Source§impl SpawnedProcess
impl SpawnedProcess
Sourcepub fn wait(&mut self) -> Result<()>
pub fn wait(&mut self) -> Result<()>
Wait for the process to finish, discarding the exit status.
§Errors
Returns an error if the wait operation fails.
Auto Trait Implementations§
impl Freeze for SpawnedProcess
impl RefUnwindSafe for SpawnedProcess
impl Send for SpawnedProcess
impl Sync for SpawnedProcess
impl Unpin for SpawnedProcess
impl UnsafeUnpin for SpawnedProcess
impl UnwindSafe for SpawnedProcess
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more