| Crates.io | collar |
| lib.rs | collar |
| version | 1.0.1 |
| created_at | 2025-02-08 02:24:33.832678+00 |
| updated_at | 2025-02-09 01:55:35.946816+00 |
| description | easy array collection |
| homepage | |
| repository | https://github.com/bend-n/collar |
| max_upload_size | |
| id | 1547680 |
| size | 12,148 |
this crate provides collect_array and makes it easy to collect to small stack allocated arrays
use collar::*;
let Some([ty, path, http]) = request.split(' ').collect_array_checked() else {
return;
};