pub trait Serialize {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer
; }
Expand description

A data structure that can be serialized into any data format supported by Serde.

Serde provides Serialize implementations for many Rust primitive and standard library types. The complete list is here. All of these can be serialized using Serde out of the box.

Additionally, Serde provides a procedural macro called serde_derive to automatically generate Serialize implementations for structs and enums in your program. See the derive section of the manual for how to use this.

In rare cases it may be necessary to implement Serialize manually for some type in your program. See the Implementing Serialize section of the manual for more about this.

Third-party crates may provide Serialize implementations for types that they expose. For example the linked-hash-map crate provides a LinkedHashMap<K, V> type that is serializable by Serde because the crate provides an implementation of Serialize for it.

Required Methods

Serialize this value into the given Serde serializer.

See the Implementing Serialize section of the manual for more information about how to implement this method.

use serde::ser::{Serialize, SerializeStruct, Serializer};

struct Person {
    name: String,
    age: u8,
    phones: Vec<String>,
}

// This is what #[derive(Serialize)] would generate.
impl Serialize for Person {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        let mut s = serializer.serialize_struct("Person", 3)?;
        s.serialize_field("name", &self.name)?;
        s.serialize_field("age", &self.age)?;
        s.serialize_field("phones", &self.phones)?;
        s.end()
    }
}

Implementations on Foreign Types

This impl requires the "rc" Cargo feature of Serde.

Serializing a data structure containing Rc will serialize a copy of the contents of the Rc each time the Rc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

This impl requires the "rc" Cargo feature of Serde.

Serializing a data structure containing Arc will serialize a copy of the contents of the Arc each time the Arc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

This impl requires the "rc" Cargo feature of Serde.

This impl requires the "rc" Cargo feature of Serde.

Implementors

impl<K, V, S> Serialize for IndexMap<K, V, S>where
    K: Serialize + Hash + Eq,
    V: Serialize,
    S: BuildHasher,

impl<T, S> Serialize for IndexSet<T, S>where
    T: Serialize + Hash + Eq,
    S: BuildHasher,

impl Serialize for Color

impl Serialize for Hover

impl Serialize for Entry

impl Serialize for Vertex

impl Serialize for Event

impl Serialize for Edge

impl Serialize for Item

impl Serialize for Range

impl<T> Serialize for TagSupport<T>where
    T: Serialize,

impl<A, B> Serialize for OneOf<A, B>where
    A: Serialize,
    B: Serialize,

impl Serialize for Sign

impl Serialize for BigInt

impl Serialize for NodeId

impl Serialize for Value

impl Serialize for Number

impl<T> Serialize for ArcCow<T>where
    T: Serialize + Take + Freeze,

impl Serialize for RClass

impl Serialize for RDecl

impl Serialize for RExpr

impl Serialize for RSuper

impl Serialize for RTpl

impl Serialize for RParam

impl Serialize for RIdent

impl Serialize for RLit

impl Serialize for RStr

impl Serialize for RBool

impl Serialize for RNull

impl Serialize for RRegex

impl Serialize for RPat

impl Serialize for RProp

impl Serialize for RStmt

impl Serialize for RTsLit

impl Serialize for Id

impl<const N: &'static str> Serialize for Tracker<N>

impl Serialize for Type

impl Serialize for Key

impl Serialize for Symbol

impl Serialize for Ref

impl Serialize for Module

impl Serialize for Enum

impl Serialize for Class

impl Serialize for Method

impl Serialize for Mapped

impl Serialize for Index

impl Serialize for Unique

impl Serialize for Tuple

impl Serialize for Alias

impl Serialize for TsExpr

impl Serialize for Array

impl Serialize for Union

impl<Static: StaticAtomSet> Serialize for Atom<Static>

impl Serialize for Atom

impl Serialize for Span

impl Serialize for Class

impl Serialize for Decl

impl Serialize for FnDecl

impl Serialize for Expr

impl Serialize for FnExpr

impl Serialize for Tpl

impl Serialize for Callee

impl Serialize for Super

impl Serialize for Import

impl Serialize for Param

impl Serialize for Ident

impl Serialize for Lit

impl Serialize for BigInt

impl Serialize for Str

impl Serialize for Bool

impl Serialize for Null

impl Serialize for Regex

impl Serialize for Number

impl Serialize for Module

impl Serialize for Script

impl Serialize for Pat

impl Serialize for Prop

impl Serialize for Stmt

impl Serialize for IfStmt

impl Serialize for TsType

impl Serialize for TsLit

impl Serialize for Config

impl Serialize for Syntax

impl Serialize for Error

impl Serialize for Id

impl<T: Serialize> Serialize for Arc<T>

impl<S> Serialize for Host<S>where
    S: Serialize,

impl Serialize for Url