A Rune script backend for droute
| 42 | |
| 43 | /// A Rune script backend for droute |
| 44 | pub struct RuneScript { |
| 45 | upstreams: Upstreams, |
| 46 | // We cannot store Vm "as is" here as otherwise RuneScript is not Sync and &RuneScript wouldn't be Send. |
| 47 | unit: Arc<Unit>, |
| 48 | context: Arc<RuntimeContext>, |
| 49 | inited: HashMap<String, Utils>, |
| 50 | } |
| 51 | |
| 52 | #[async_trait] |
| 53 | impl ScriptBackend for RuneScript { |
nothing calls this directly
no outgoing calls
no test coverage detected