Movatterモバイル変換


[0]ホーム

URL:


Docs.rs

Crateserde [][src]

Serde Serialization Framework

Serde is a powerful framework that enables serialization libraries to generically serializeRust data structures without the overhead of runtime type information. In many situations, thehandshake protocol between serializers and serializees can be completely optimized away,leaving serde to perform roughly the same speed as a hand written serializer for a specifictype.

For a detailed tutorial on the different ways to use serde please check out thegithub repository

Reexports

pub use ser::{Serialize,Serializer};
pub use de::{Deserialize,Deserializer,Error};

Modules

bytes

Helper module to enable serializing bytes more efficiently

de

Generic deserialization framework.

iter

Module that contains helper iterators.

ser

Generic serialization framework.

Macros

forward_to_deserialize

Helper to forwardDeserializer methods toDeserializer::deserialize.Every given method ignores all arguments and forwards todeserialize.Note thatdeserialize_enum simply returns anError::invalid_type; abetter approach is tracked inserde-rs/serde#521.

Help

Keyboard Shortcuts

?
Show this help dialog
S
Focus the search field
Move up in search results
Move down in search results
Go to active search result
+
Collapse/expand all sections

Search Tricks

Prefix searches with a type followed by a colon (e.g.fn:) to restrict the search to a given type.

Accepted types are:fn,mod,struct,enum,trait,type,macro, andconst.

Search functions by type signature (e.g.vec -> usize or* -> vec)


[8]
ページ先頭

©2009-2025 Movatter.jp