Registry / serialization / pod
library0.5.0rscratesunverified

Provides Plain Old Data (POD) encoding and I/O operations.

# Cargo.toml [dependencies] pod = "0.5.0"
INSTALL
IMPORT
SIG · POD
P
pod
serializationrustv0.5.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Pod
use pod::Pod;

Decodes a byte slice into a POD structure.

use pod::Pod; fn main() { let data = vec![1u8, 2, 3, 4]; let pod = Pod::from_bytes(&data).unwrap(); println!("{:?}", pod); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.5.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Resources
pod — cargo add pod · libregistry