Struct workflow_wasm::serde::Serializer
source · pub struct Serializer { /* private fields */ }Expand description
A serde::Serializer that converts supported Rust values into a JsValue.
Implementations§
source§impl Serializer
impl Serializer
sourcepub const fn new() -> Serializer
pub const fn new() -> Serializer
Creates a new default Serializer.
sourcepub const fn json_compatible() -> Serializer
pub const fn json_compatible() -> Serializer
Creates a JSON compatible serializer. This uses null instead of undefined, and
uses plain objects instead of ES maps. So you will get the same result of
JsValue::from_serde, and you can stringify results to JSON and store
it without data loss.
sourcepub const fn serialize_missing_as_null(self, value: bool) -> Serializer
pub const fn serialize_missing_as_null(self, value: bool) -> Serializer
Set to true to serialize (), unit structs and Option::None to null
instead of undefined in JS. false by default.
sourcepub const fn serialize_maps_as_objects(self, value: bool) -> Serializer
pub const fn serialize_maps_as_objects(self, value: bool) -> Serializer
Set to true to serialize maps into plain JavaScript objects instead of
ES2015 Maps. false by default.
sourcepub const fn serialize_large_number_types_as_bigints(
self,
value: bool
) -> Serializer
pub const fn serialize_large_number_types_as_bigints( self, value: bool ) -> Serializer
Set to true to serialize 64-bit numbers to JavaScript BigInt instead of
plain numbers. false by default.
sourcepub const fn serialize_bytes_as_arrays(self, value: bool) -> Serializer
pub const fn serialize_bytes_as_arrays(self, value: bool) -> Serializer
Set to true to serialize bytes into plain JavaScript arrays instead of
ES2015 Uint8Arrays. false by default.
Trait Implementations§
source§impl Default for Serializer
impl Default for Serializer
source§fn default() -> Serializer
fn default() -> Serializer
source§impl<'s> Serializer for &'s Serializer
impl<'s> Serializer for &'s Serializer
source§fn serialize_unit_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str
) -> Result<JsValue, Error>
fn serialize_unit_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str ) -> Result<JsValue, Error>
For compatibility with serde-json, serialises unit variants as “Variant” strings.
source§fn serialize_seq(
self,
_len: Option<usize>
) -> Result<<&'s Serializer as Serializer>::SerializeSeq, Error>
fn serialize_seq( self, _len: Option<usize> ) -> Result<<&'s Serializer as Serializer>::SerializeSeq, Error>
Serialises any Rust iterable into a JS Array.
source§fn serialize_map(
self,
_len: Option<usize>
) -> Result<<&'s Serializer as Serializer>::SerializeMap, Error>
fn serialize_map( self, _len: Option<usize> ) -> Result<<&'s Serializer as Serializer>::SerializeMap, Error>
Serialises Rust maps into JS Map or plain JS objects, depending on configuration of serialize_maps_as_objects.
source§fn serialize_struct(
self,
_name: &'static str,
_len: usize
) -> Result<<&'s Serializer as Serializer>::SerializeStruct, Error>
fn serialize_struct( self, _name: &'static str, _len: usize ) -> Result<<&'s Serializer as Serializer>::SerializeStruct, Error>
Serialises Rust typed structs into plain JS objects.
§type Ok = JsValue
type Ok = JsValue
Serializer during successful
serialization. Most serializers that produce text or binary output
should set Ok = () and serialize into an io::Write or buffer
contained within the Serializer instance. Serializers that build
in-memory data structures may be simplified by using Ok to propagate
the data structure around.§type SerializeSeq = ArraySerializer<'s>
type SerializeSeq = ArraySerializer<'s>
serialize_seq for serializing the content of the
sequence.§type SerializeTuple = ArraySerializer<'s>
type SerializeTuple = ArraySerializer<'s>
serialize_tuple for serializing the content of
the tuple.§type SerializeTupleStruct = ArraySerializer<'s>
type SerializeTupleStruct = ArraySerializer<'s>
serialize_tuple_struct for serializing the
content of the tuple struct.§type SerializeTupleVariant = VariantSerializer<ArraySerializer<'s>>
type SerializeTupleVariant = VariantSerializer<ArraySerializer<'s>>
serialize_tuple_variant for serializing the
content of the tuple variant.§type SerializeMap = MapSerializer<'s>
type SerializeMap = MapSerializer<'s>
serialize_map for serializing the content of the
map.§type SerializeStruct = ObjectSerializer<'s>
type SerializeStruct = ObjectSerializer<'s>
serialize_struct for serializing the content of
the struct.§type SerializeStructVariant = VariantSerializer<ObjectSerializer<'s>>
type SerializeStructVariant = VariantSerializer<ObjectSerializer<'s>>
serialize_struct_variant for serializing the
content of the struct variant.source§fn serialize_bytes(self, v: &[u8]) -> Result<JsValue, Error>
fn serialize_bytes(self, v: &[u8]) -> Result<JsValue, Error>
source§fn serialize_newtype_struct<T>(
self,
name: &'static str,
value: &T
) -> Result<JsValue, Error>where
T: Serialize + ?Sized,
fn serialize_newtype_struct<T>( self, name: &'static str, value: &T ) -> Result<JsValue, Error>where T: Serialize + ?Sized,
struct Millimeters(u8). Read moresource§fn serialize_newtype_variant<T>(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
value: &T
) -> Result<JsValue, Error>where
T: Serialize + ?Sized,
fn serialize_newtype_variant<T>( self, _name: &'static str, _variant_index: u32, variant: &'static str, value: &T ) -> Result<JsValue, Error>where T: Serialize + ?Sized,
source§fn serialize_tuple(
self,
len: usize
) -> Result<<&'s Serializer as Serializer>::SerializeTuple, Error>
fn serialize_tuple( self, len: usize ) -> Result<<&'s Serializer as Serializer>::SerializeTuple, Error>
serialize_element,
then a call to end. Read moresource§fn serialize_tuple_struct(
self,
_name: &'static str,
len: usize
) -> Result<<&'s Serializer as Serializer>::SerializeTupleStruct, Error>
fn serialize_tuple_struct( self, _name: &'static str, len: usize ) -> Result<<&'s Serializer as Serializer>::SerializeTupleStruct, Error>
struct Rgb(u8, u8, u8). This
call must be followed by zero or more calls to serialize_field, then a
call to end. Read moresource§fn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize
) -> Result<<&'s Serializer as Serializer>::SerializeTupleVariant, Error>
fn serialize_tuple_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str, len: usize ) -> Result<<&'s Serializer as Serializer>::SerializeTupleVariant, Error>
E::T in enum E { T(u8, u8) }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moresource§fn serialize_struct_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize
) -> Result<<&'s Serializer as Serializer>::SerializeStructVariant, Error>
fn serialize_struct_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str, len: usize ) -> Result<<&'s Serializer as Serializer>::SerializeStructVariant, Error>
E::S in enum E { S { r: u8, g: u8, b: u8 } }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moresource§fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
I: IntoIterator,
<I as IntoIterator>::Item: Serialize,
fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where I: IntoIterator, <I as IntoIterator>::Item: Serialize,
source§fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
K: Serialize,
V: Serialize,
I: IntoIterator<Item = (K, V)>,
fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where K: Serialize, V: Serialize, I: IntoIterator<Item = (K, V)>,
source§fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
T: Display + ?Sized,
fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where T: Display + ?Sized,
Display. Read moresource§fn is_human_readable(&self) -> bool
fn is_human_readable(&self) -> bool
Serialize implementations should serialize in
human-readable form. Read more