pub struct RuntimeConfig {
pub worker_threads: usize,
pub entries: u32,
pub sqpoll_idle: Option<u32>,
pub runtime_type: RuntimeType,
pub cpu_affinity: bool,
pub thread_pool: Option<usize>,
}Expand description
Configuration options for the runtime environment.
This structure allows for fine-tuning of the runtime, including worker threads, I/O multiplexing, and CPU affinity settings.
Fields§
§worker_threads: usizeNumber of worker threads for the runtime.
entries: u32Number of I/O entries for event handling for io_uring.
sqpoll_idle: Option<u32>Idle timeout for squall polling (io_uring specific).
runtime_type: RuntimeTypeThe type of runtime to use.
cpu_affinity: boolWhether to enable CPU affinity for worker threads.
thread_pool: Option<usize>Optional thread pool size for specific runtime implementations.
Trait Implementations§
Source§impl Clone for RuntimeConfig
impl Clone for RuntimeConfig
Source§fn clone(&self) -> RuntimeConfig
fn clone(&self) -> RuntimeConfig
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 RuntimeConfig
impl Debug for RuntimeConfig
Source§impl Default for RuntimeConfig
impl Default for RuntimeConfig
Source§impl<'de> Deserialize<'de> for RuntimeConfig
impl<'de> Deserialize<'de> for RuntimeConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RuntimeConfig
impl RefUnwindSafe for RuntimeConfig
impl Send for RuntimeConfig
impl Sync for RuntimeConfig
impl Unpin for RuntimeConfig
impl UnwindSafe for RuntimeConfig
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