Struct procspawn::ProcConfig

source ·
pub struct ProcConfig { /* private fields */ }
Expand description

Can be used to configure the process.

Implementations§

source§

impl ProcConfig

source

pub fn new() -> ProcConfig

Creates a default proc config.

source

pub fn config_callback<F: FnOnce() + 'static>(&mut self, f: F) -> &mut Self

Attaches a callback that is used to initializes all processes.

source

pub fn pass_args(&mut self, enabled: bool) -> &mut Self

Enables or disables argument passing.

By default all arguments are forwarded to the spawned process.

source

pub fn panic_handling(&mut self, enabled: bool) -> &mut Self

Configure the automatic panic handling.

The default behavior is that panics are caught and that a panic handler is installed.

source

pub fn capture_backtraces(&mut self, enabled: bool) -> &mut Self

Configures if backtraces should be captured.

The default behavior is that if panic handling is enabled backtraces will be captured.

This requires the backtrace feature.

source

pub fn resolve_backtraces(&mut self, enabled: bool) -> &mut Self

Controls whether backtraces should be resolved.

source

pub fn init(&mut self)

Consumes the config and initializes the process.

Trait Implementations§

source§

impl Default for ProcConfig

source§

fn default() -> ProcConfig

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V