Docs.rs
tiny-serde-0.1.2
tiny-serde 0.1.2
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
crat1985
Dependencies
tiny-serde-derive ^0.1.1
normal
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
tiny_
serde
0.1.2
Serialize
Required Methods
serialize
Implementations on Foreign Types
HashMap<String, Value>
Option<S>
String
Vec<Value>
bool
f64
i128
u128
Implementors
In tiny_
serde::
serialize
tiny_serde
::
serialize
Trait
Serialize
Copy item path
Source
pub trait Serialize { // Required method fn
serialize
(&self) ->
Value
; }
Required Methods
§
Source
fn
serialize
(&self) ->
Value
Implementations on Foreign Types
§
Source
§
impl
Serialize
for
bool
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
f64
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
i128
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
u128
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
String
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
Vec
<
Value
>
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl
Serialize
for
HashMap
<
String
,
Value
>
Source
§
fn
serialize
(&self) ->
Value
Source
§
impl<S:
Serialize
>
Serialize
for
Option
<S>
Source
§
fn
serialize
(&self) ->
Value
Implementors
§