mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-25 05:47:56 +00:00
Add some basic docs
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
//! Helper module to enable serializing bytes more efficiently
|
||||
|
||||
use std::ops;
|
||||
|
||||
use ser;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
//! Generic deserialization framework.
|
||||
|
||||
use std::str;
|
||||
|
||||
pub mod impls;
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
//! Serde Serialization Framework
|
||||
//!
|
||||
//! Serde is a powerful framework that enables serialization libraries to generically serialize
|
||||
//! Rust data structures without the overhead of runtime type information. In many situations, the
|
||||
//! handshake 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 specific
|
||||
//! type.
|
||||
|
||||
#![feature(collections, convert, core, std_misc, unicode)]
|
||||
|
||||
extern crate unicode;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
//! Generic serialization framework.
|
||||
|
||||
use std::str;
|
||||
|
||||
pub mod impls;
|
||||
|
||||
Reference in New Issue
Block a user