Enable YOLO mode for specific lanes
(mut self, lanes: impl IntoIterator<Item = SessionLane>)
| 69 | |
| 70 | /// Enable YOLO mode for specific lanes |
| 71 | pub fn with_yolo_lanes(mut self, lanes: impl IntoIterator<Item = SessionLane>) -> Self { |
| 72 | self.yolo_lanes = lanes.into_iter().collect(); |
| 73 | self |
| 74 | } |
| 75 | |
| 76 | /// Set timeout |
| 77 | pub fn with_timeout(mut self, timeout_ms: u64, action: TimeoutAction) -> Self { |
no outgoing calls