pub struct WasiOptions {Show 24 fields
pub cli: Option<bool>,
pub cli_exit_with_code: Option<bool>,
pub common: Option<bool>,
pub nn: Option<bool>,
pub threads: Option<bool>,
pub http: Option<bool>,
pub http_outgoing_body_buffer_chunks: Option<usize>,
pub http_outgoing_body_chunk_size: Option<usize>,
pub config: Option<bool>,
pub keyvalue: Option<bool>,
pub listenfd: Option<bool>,
pub tcplisten: Vec<String>,
pub tls: Option<bool>,
pub preview2: Option<bool>,
pub nn_graph: Vec<WasiNnGraph>,
pub inherit_network: Option<bool>,
pub allow_ip_name_lookup: Option<bool>,
pub tcp: Option<bool>,
pub udp: Option<bool>,
pub network_error_code: Option<bool>,
pub preview0: Option<bool>,
pub inherit_env: Option<bool>,
pub config_var: Vec<KeyValuePair>,
pub keyvalue_in_memory_data: Vec<KeyValuePair>,
}
Fields§
§cli: Option<bool>
§cli_exit_with_code: Option<bool>
§common: Option<bool>
§nn: Option<bool>
§threads: Option<bool>
§http: Option<bool>
§http_outgoing_body_buffer_chunks: Option<usize>
§http_outgoing_body_chunk_size: Option<usize>
§config: Option<bool>
§keyvalue: Option<bool>
§listenfd: Option<bool>
§tcplisten: Vec<String>
§tls: Option<bool>
§preview2: Option<bool>
§nn_graph: Vec<WasiNnGraph>
§inherit_network: Option<bool>
§allow_ip_name_lookup: Option<bool>
§tcp: Option<bool>
§udp: Option<bool>
§network_error_code: Option<bool>
§preview0: Option<bool>
§inherit_env: Option<bool>
§config_var: Vec<KeyValuePair>
§keyvalue_in_memory_data: Vec<KeyValuePair>
Trait Implementations§
Source§impl Clone for WasiOptions
impl Clone for WasiOptions
Source§fn clone(&self) -> WasiOptions
fn clone(&self) -> WasiOptions
Returns a copy of the value. Read more
1.0.0 · 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 WasiOptions
impl Debug for WasiOptions
Source§impl Default for WasiOptions
impl Default for WasiOptions
Source§fn default() -> WasiOptions
fn default() -> WasiOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WasiOptions
impl<'de> Deserialize<'de> for WasiOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WasiOptions
impl PartialEq for WasiOptions
impl StructuralPartialEq for WasiOptions
Auto Trait Implementations§
impl Freeze for WasiOptions
impl RefUnwindSafe for WasiOptions
impl Send for WasiOptions
impl Sync for WasiOptions
impl Unpin for WasiOptions
impl UnwindSafe for WasiOptions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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