Struct RuntimeStartOptions
pub struct RuntimeStartOptions {
pub host_network: bool,
pub ts_buffer_size: Option<usize>,
pub ts_flush_interval_ms: Option<u64>,
}Expand description
Per runtime startup options
Fields§
§host_network: boolWhether the runtime should use hot networking (container mode only).
ts_buffer_size: Option<usize>Timeseries ILP writer buffer size
ts_flush_interval_ms: Option<u64>Timeseries flush interval in milliseconds
Trait Implementations§
§impl Clone for RuntimeStartOptions
impl Clone for RuntimeStartOptions
§fn clone(&self) -> RuntimeStartOptions
fn clone(&self) -> RuntimeStartOptions
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 more§impl Debug for RuntimeStartOptions
impl Debug for RuntimeStartOptions
§impl Default for RuntimeStartOptions
impl Default for RuntimeStartOptions
§fn default() -> RuntimeStartOptions
fn default() -> RuntimeStartOptions
Returns the “default value” for a type. Read more
impl Copy for RuntimeStartOptions
Auto Trait Implementations§
impl Freeze for RuntimeStartOptions
impl RefUnwindSafe for RuntimeStartOptions
impl Send for RuntimeStartOptions
impl Sync for RuntimeStartOptions
impl Unpin for RuntimeStartOptions
impl UnsafeUnpin for RuntimeStartOptions
impl UnwindSafe for RuntimeStartOptions
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