pub struct UnifiedExecutorConfig {
pub mode: ExecutionMode,
pub cloud_worker_url: Option<String>,
pub cloud_api_token: Option<String>,
pub cloud_namespace_id: Option<String>,
pub event_buffer_size: usize,
pub max_wasm_workers: usize,
}Expand description
Configuration for unified command executor
Fields§
§mode: ExecutionMode§cloud_worker_url: Option<String>§cloud_api_token: Option<String>§cloud_namespace_id: Option<String>§event_buffer_size: usize§max_wasm_workers: usizeTrait Implementations§
Source§impl Clone for UnifiedExecutorConfig
impl Clone for UnifiedExecutorConfig
Source§fn clone(&self) -> UnifiedExecutorConfig
fn clone(&self) -> UnifiedExecutorConfig
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 UnifiedExecutorConfig
impl Debug for UnifiedExecutorConfig
Auto Trait Implementations§
impl Freeze for UnifiedExecutorConfig
impl RefUnwindSafe for UnifiedExecutorConfig
impl Send for UnifiedExecutorConfig
impl Sync for UnifiedExecutorConfig
impl Unpin for UnifiedExecutorConfig
impl UnsafeUnpin for UnifiedExecutorConfig
impl UnwindSafe for UnifiedExecutorConfig
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