The builder for `NativeScript`
| 59 | |
| 60 | /// The builder for `NativeScript` |
| 61 | pub struct NativeScriptBuilder<F, T> |
| 62 | where |
| 63 | F: Fn(Upstreams, Message<Bytes>, Option<QueryContext>) -> T + Send + Sync, |
| 64 | T: std::future::Future<Output = Result<Message<Bytes>>> + Send, |
| 65 | { |
| 66 | script: F, |
| 67 | } |
| 68 | |
| 69 | impl<F, T> NativeScriptBuilder<F, T> |
| 70 | where |
nothing calls this directly
no outgoing calls
no test coverage detected