pub struct LaneHandlerConfig {
pub mode: TaskHandlerMode,
pub timeout_ms: u64,
}Expand description
Configuration for a lane’s task handler
Fields§
§mode: TaskHandlerModeProcessing mode
timeout_ms: u64Timeout for external processing (ms), default 60000 (60s)
Trait Implementations§
Source§impl Clone for LaneHandlerConfig
impl Clone for LaneHandlerConfig
Source§fn clone(&self) -> LaneHandlerConfig
fn clone(&self) -> LaneHandlerConfig
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 LaneHandlerConfig
impl Debug for LaneHandlerConfig
Source§impl Default for LaneHandlerConfig
impl Default for LaneHandlerConfig
Source§impl<'de> Deserialize<'de> for LaneHandlerConfig
impl<'de> Deserialize<'de> for LaneHandlerConfig
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 LaneHandlerConfig
impl RefUnwindSafe for LaneHandlerConfig
impl Send for LaneHandlerConfig
impl Sync for LaneHandlerConfig
impl Unpin for LaneHandlerConfig
impl UnsafeUnpin for LaneHandlerConfig
impl UnwindSafe for LaneHandlerConfig
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