Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kygost/freds
Flexible Referencing Extensible Data Store
https://github.com/kygost/freds
object rust storage
Last synced: 13 days ago
JSON representation
Flexible Referencing Extensible Data Store
- Host: GitHub
- URL: https://github.com/kygost/freds
- Owner: KyGost
- License: apache-2.0
- Created: 2022-07-07T01:11:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-21T01:10:58.000Z (over 2 years ago)
- Last Synced: 2024-10-12T14:21:53.802Z (27 days ago)
- Topics: object, rust, storage
- Language: Rust
- Homepage:
- Size: 1.26 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FREDS
**F**lexible **R**eferencing **E**xtensible **D**ata **S**tore## Two Kinds
### Sized
64b/8B
Inline for Unsized#### Common
- u64
- i64
- f64### Unsized
#### Common
- Map
- Array
- String#### Made of
- (Type)
- Reference
- Size
- Data## Allows
- Partial Read
- Partial Write
- Custom Types## Format
### File
```
- TYPE:SIZE
- SIZE
- DATA (eg. TYPE:DATA)
```### Rust
```
All: [Vec>; 256]
```