Create new runtime with default configuration
()
| 27 | impl Runtime { |
| 28 | /// Create new runtime with default configuration |
| 29 | pub fn new() -> Self { |
| 30 | Self::with_config(RuntimeConfig::default()) |
| 31 | } |
| 32 | |
| 33 | /// Create runtime with custom configuration |
| 34 | pub fn with_config(config: RuntimeConfig) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected