(&self)
| 56 | } |
| 57 | |
| 58 | async fn run(&self) -> Result<()> { |
| 59 | match self { |
| 60 | ExampleKind::All => { |
| 61 | for example in ExampleKind::runnable() { |
| 62 | println!("Running example: {example}"); |
| 63 | Box::pin(example.run()).await?; |
| 64 | } |
| 65 | } |
| 66 | ExampleKind::ComposedExtensionCodec => { |
| 67 | composed_extension_codec::composed_extension_codec().await? |
| 68 | } |
| 69 | ExampleKind::ExpressionDeduplication => { |
| 70 | expression_deduplication::expression_deduplication().await? |
| 71 | } |
| 72 | } |
| 73 | Ok(()) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | #[tokio::main] |
no test coverage detected