Get a3s-lane lane ID string
(self)
| 37 | impl SessionLane { |
| 38 | /// Get a3s-lane lane ID string |
| 39 | fn lane_id(self) -> &'static str { |
| 40 | match self { |
| 41 | SessionLane::Control => "control", |
| 42 | SessionLane::Query => "query", |
| 43 | SessionLane::Execute => "skill", |
| 44 | SessionLane::Generate => "prompt", |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | /// Get priority value (lower = higher priority) |
| 49 | fn lane_priority(self) -> u8 { |
no outgoing calls
no test coverage detected