Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/friendbear/safe-zero-copy-parsers-rust-lang-ver
https://github.com/friendbear/safe-zero-copy-parsers-rust-lang-ver
Last synced: about 2 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/friendbear/safe-zero-copy-parsers-rust-lang-ver
- Owner: friendbear
- Created: 2023-11-25T06:16:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-25T06:24:15.000Z (about 1 year ago)
- Last Synced: 2024-11-12T11:09:28.354Z (2 months ago)
- Language: Rust
- Size: 930 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Alt text](image.png)
# Safe Zero Copy Parsers## Rust Langage Version
> This is Sample Coode
### Change me
```rust
fn get_data() -> Vec {
const DATA: [u8; 5] = [255, b't', b'e', b's', b't'];
DATA.to_vec() // Return dynamically allocated array (Vector)
}```
---
Link: