pub struct RunnerConfig {
pub wasm_path: PathBuf,
pub world: String,
pub capabilities: Capabilities,
pub limits: Option<Limits>,
pub telemetry: Option<TelemetrySpec>,
pub redactions: Vec<JsonPath>,
pub defaults: Vec<String>,
pub describe: DescribePayload,
}Fields§
§wasm_path: PathBuf§world: String§capabilities: Capabilities§limits: Option<Limits>§telemetry: Option<TelemetrySpec>§redactions: Vec<JsonPath>§defaults: Vec<String>§describe: DescribePayloadTrait Implementations§
Source§impl Clone for RunnerConfig
impl Clone for RunnerConfig
Source§fn clone(&self) -> RunnerConfig
fn clone(&self) -> RunnerConfig
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 moreAuto Trait Implementations§
impl Freeze for RunnerConfig
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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