pub struct WasmV2Options {
pub workspace_root: String,
pub capabilities: Vec<String>,
}Expand description
Options for v2 execution that go beyond the container/policy.
Fields§
§workspace_root: String§capabilities: Vec<String>Trait Implementations§
Source§impl Clone for WasmV2Options
impl Clone for WasmV2Options
Source§fn clone(&self) -> WasmV2Options
fn clone(&self) -> WasmV2Options
Returns a duplicate 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 WasmV2Options
impl Debug for WasmV2Options
Source§impl Default for WasmV2Options
impl Default for WasmV2Options
Source§fn default() -> WasmV2Options
fn default() -> WasmV2Options
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WasmV2Options
impl RefUnwindSafe for WasmV2Options
impl Send for WasmV2Options
impl Sync for WasmV2Options
impl Unpin for WasmV2Options
impl UnsafeUnpin for WasmV2Options
impl UnwindSafe for WasmV2Options
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> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike + FromFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike + FromFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self file descriptor. Read more