INNER CODE UNIT · Rust
server_to_table
flosse/rust-web-framework-comparison · src/main.rs:307
fn server_to_table<'a>(servers: &[&Server]) -> table::Table {
let mut rows = vec![vec![
"Name".to_string(),
"Stars".to_string(),
"Contributors".to_string(),
"Activity".to_string(),
"Repo".to_string(),
"Docs".to_string(),
"License".to_string(),
"Version".to_string(),
"Async".to_string(),
"HTTPS".to_string(),
"HTTP/2".to_string(),
"Base".to_string(),
"Client".to_string(),
]];
for s in servers {