pub struct ToolRuntimeConfig {
pub timeout: Duration,
pub memory_limit_bytes: u64,
pub fuel: u64,
pub max_output_bytes: usize,
pub stack_size_bytes: usize,
}Expand description
Configuration for the WASM plugin runtime. All limits are mandatory and cannot be disabled.
Fields§
§timeout: DurationWall-clock timeout per invocation.
memory_limit_bytes: u64Linear memory limit in bytes.
fuel: u64Fuel (instruction budget) per invocation.
max_output_bytes: usizeMax tool output size in bytes.
stack_size_bytes: usizeStack size in bytes.
Trait Implementations§
Source§impl Clone for ToolRuntimeConfig
impl Clone for ToolRuntimeConfig
Source§fn clone(&self) -> ToolRuntimeConfig
fn clone(&self) -> ToolRuntimeConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ToolRuntimeConfig
impl Debug for ToolRuntimeConfig
Auto Trait Implementations§
impl Freeze for ToolRuntimeConfig
impl RefUnwindSafe for ToolRuntimeConfig
impl Send for ToolRuntimeConfig
impl Sync for ToolRuntimeConfig
impl Unpin for ToolRuntimeConfig
impl UnsafeUnpin for ToolRuntimeConfig
impl UnwindSafe for ToolRuntimeConfig
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