pub struct WasiConfigVariables(/* private fields */);
Expand description
Capture the state necessary for use in the wasi-config
API implementation.
Implementations§
Trait Implementations§
Source§impl Default for WasiConfigVariables
impl Default for WasiConfigVariables
Source§fn default() -> WasiConfigVariables
fn default() -> WasiConfigVariables
Returns the “default value” for a type. Read more
Source§impl<'a> From<&'a WasiConfigVariables> for WasiConfig<'a>
impl<'a> From<&'a WasiConfigVariables> for WasiConfig<'a>
Source§fn from(vars: &'a WasiConfigVariables) -> Self
fn from(vars: &'a WasiConfigVariables) -> Self
Converts to this type from the input type.
Source§impl<S: Into<String>> FromIterator<(S, S)> for WasiConfigVariables
impl<S: Into<String>> FromIterator<(S, S)> for WasiConfigVariables
Auto Trait Implementations§
impl Freeze for WasiConfigVariables
impl RefUnwindSafe for WasiConfigVariables
impl Send for WasiConfigVariables
impl Sync for WasiConfigVariables
impl Unpin for WasiConfigVariables
impl UnwindSafe for WasiConfigVariables
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