pub struct StdProcessSpawner;Expand description
Production ProcessSpawner over tokio::process::Command.
The type holds no state and is freely cloneable; instantiate it
with Self::new (or Default::default) and pass it as a
generic parameter to the executor.
Implementations§
Trait Implementations§
Source§impl Clone for StdProcessSpawner
impl Clone for StdProcessSpawner
Source§fn clone(&self) -> StdProcessSpawner
fn clone(&self) -> StdProcessSpawner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StdProcessSpawner
impl Debug for StdProcessSpawner
Source§impl Default for StdProcessSpawner
impl Default for StdProcessSpawner
Source§fn default() -> StdProcessSpawner
fn default() -> StdProcessSpawner
Returns the “default value” for a type. Read more
Source§impl ProcessSpawner for StdProcessSpawner
impl ProcessSpawner for StdProcessSpawner
impl Copy for StdProcessSpawner
Auto Trait Implementations§
impl Freeze for StdProcessSpawner
impl RefUnwindSafe for StdProcessSpawner
impl Send for StdProcessSpawner
impl Sync for StdProcessSpawner
impl Unpin for StdProcessSpawner
impl UnsafeUnpin for StdProcessSpawner
impl UnwindSafe for StdProcessSpawner
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