Struct wasmedge_process_interface::Command[][src]

pub struct Command {
    pub name: String,
    pub args_list: Vec<String>,
    pub envp_map: HashMap<String, String>,
    pub timeout_val: u32,
    pub stdin_str: Vec<u8>,
}

Fields

name: String

The program name.

args_list: Vec<String>

The argument list.

envp_map: HashMap<String, String>

The environment map.

timeout_val: u32

The timeout value (milliseconds).

stdin_str: Vec<u8>

Buffered stdin.

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.