Struct pythnet_sdk::wire::Serializer
source · pub struct Serializer<W: Write, B: ByteOrder> { /* private fields */ }Expand description
A type for Pyth’s common serialization format. Note that a ByteOrder type param is required as we serialize in both big and little endian depending on different use-cases.
Implementations§
Trait Implementations§
source§impl<W: Clone + Write, B: Clone + ByteOrder> Clone for Serializer<W, B>
impl<W: Clone + Write, B: Clone + ByteOrder> Clone for Serializer<W, B>
source§fn clone(&self) -> Serializer<W, B>
fn clone(&self) -> Serializer<W, B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'a, W: Write, B: ByteOrder> SerializeMap for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeMap for &'a mut Serializer<W, B>
§type Error = SerializerError
type Error = SerializerError
Must match the
Error type of our Serializer.source§fn serialize_key<T: ?Sized + Serialize>(
&mut self,
key: &T
) -> Result<(), Self::Error>
fn serialize_key<T: ?Sized + Serialize>( &mut self, key: &T ) -> Result<(), Self::Error>
Serialize a map key. Read more
source§impl<'a, W: Write, B: ByteOrder> SerializeSeq for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeSeq for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> SerializeStruct for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeStruct for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> SerializeStructVariant for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeStructVariant for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> SerializeTuple for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeTuple for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> SerializeTupleStruct for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeTupleStruct for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> SerializeTupleVariant for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> SerializeTupleVariant for &'a mut Serializer<W, B>
source§impl<'a, W: Write, B: ByteOrder> Serializer for &'a mut Serializer<W, B>
impl<'a, W: Write, B: ByteOrder> Serializer for &'a mut Serializer<W, B>
source§fn serialize_seq(
self,
len: Option<usize>
) -> Result<Self::SerializeSeq, Self::Error>
fn serialize_seq( self, len: Option<usize> ) -> Result<Self::SerializeSeq, Self::Error>
We use the fact that len can be None here to optionally not prefix a sequence when we
serialize. This allows us to disable length prefixing optionally when writing serializers
by hand. See PrefixlessVec for an example.
§type Ok = ()
type Ok = ()
The output type produced by this
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 Error = SerializerError
type Error = SerializerError
The error type when some error occurs during serialization.
§type SerializeSeq = &'a mut Serializer<W, B>
type SerializeSeq = &'a mut Serializer<W, B>
Type returned from
serialize_seq for serializing the content of the
sequence.§type SerializeTuple = &'a mut Serializer<W, B>
type SerializeTuple = &'a mut Serializer<W, B>
Type returned from
serialize_tuple for serializing the content of
the tuple.§type SerializeTupleStruct = &'a mut Serializer<W, B>
type SerializeTupleStruct = &'a mut Serializer<W, B>
Type returned from
serialize_tuple_struct for serializing the
content of the tuple struct.§type SerializeTupleVariant = &'a mut Serializer<W, B>
type SerializeTupleVariant = &'a mut Serializer<W, B>
Type returned from
serialize_tuple_variant for serializing the
content of the tuple variant.§type SerializeMap = &'a mut Serializer<W, B>
type SerializeMap = &'a mut Serializer<W, B>
Type returned from
serialize_map for serializing the content of the
map.§type SerializeStruct = &'a mut Serializer<W, B>
type SerializeStruct = &'a mut Serializer<W, B>
Type returned from
serialize_struct for serializing the content of
the struct.§type SerializeStructVariant = &'a mut Serializer<W, B>
type SerializeStructVariant = &'a mut Serializer<W, B>
Type returned from
serialize_struct_variant for serializing the
content of the struct variant.source§fn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
fn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
Serialize a
bool value. Read moresource§fn serialize_i8(self, v: i8) -> Result<Self::Ok, Self::Error>
fn serialize_i8(self, v: i8) -> Result<Self::Ok, Self::Error>
Serialize an
i8 value. Read moresource§fn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
fn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
Serialize an
i16 value. Read moresource§fn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
fn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
Serialize an
i32 value. Read moresource§fn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
fn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
Serialize an
i64 value. Read moresource§fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
Serialize an
i128 value. Read moresource§fn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
fn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
Serialize a
u16 value. Read moresource§fn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
fn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
Serialize a
u32 value. Read moresource§fn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
fn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
Serialize a
u64 value. Read moresource§fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
Serialize a
u128 value. Read moresource§fn serialize_f32(self, _: f32) -> Result<Self::Ok, Self::Error>
fn serialize_f32(self, _: f32) -> Result<Self::Ok, Self::Error>
Serialize an
f32 value. Read moresource§fn serialize_f64(self, _: f64) -> Result<Self::Ok, Self::Error>
fn serialize_f64(self, _: f64) -> Result<Self::Ok, Self::Error>
Serialize an
f64 value. Read moresource§fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error>
fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error>
Serialize a character. Read more
source§fn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
fn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
Serialize a chunk of raw byte data. Read more
source§fn serialize_unit_variant(
self,
name: &'static str,
variant_index: u32,
variant: &'static str
) -> Result<Self::Ok, Self::Error>
fn serialize_unit_variant( self, name: &'static str, variant_index: u32, variant: &'static str ) -> Result<Self::Ok, Self::Error>
source§fn serialize_newtype_struct<T: ?Sized + Serialize>(
self,
_name: &'static str,
value: &T
) -> Result<Self::Ok, Self::Error>
fn serialize_newtype_struct<T: ?Sized + Serialize>( self, _name: &'static str, value: &T ) -> Result<Self::Ok, Self::Error>
Serialize a newtype struct like
struct Millimeters(u8). Read moresource§fn serialize_newtype_variant<T: ?Sized + Serialize>(
self,
name: &'static str,
variant_index: u32,
variant: &'static str,
value: &T
) -> Result<Self::Ok, Self::Error>
fn serialize_newtype_variant<T: ?Sized + Serialize>( self, name: &'static str, variant_index: u32, variant: &'static str, value: &T ) -> Result<Self::Ok, Self::Error>
source§fn serialize_tuple(
self,
_len: usize
) -> Result<Self::SerializeTuple, Self::Error>
fn serialize_tuple( self, _len: usize ) -> Result<Self::SerializeTuple, Self::Error>
Begin to serialize a statically sized sequence whose length will be
known at deserialization time without looking at the serialized data.
This call must be followed by zero or more calls to
serialize_element,
then a call to end. Read moresource§fn serialize_tuple_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeTupleStruct, Self::Error>
fn serialize_tuple_struct( self, _name: &'static str, _len: usize ) -> Result<Self::SerializeTupleStruct, Self::Error>
Begin to serialize a tuple struct like
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<Self::SerializeTupleVariant, Self::Error>
fn serialize_tuple_variant( self, name: &'static str, variant_index: u32, variant: &'static str, _len: usize ) -> Result<Self::SerializeTupleVariant, Self::Error>
Begin to serialize a tuple variant like
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_map(
self,
len: Option<usize>
) -> Result<Self::SerializeMap, Self::Error>
fn serialize_map( self, len: Option<usize> ) -> Result<Self::SerializeMap, Self::Error>
Begin to serialize a map. This call must be followed by zero or more
calls to
serialize_key and serialize_value, then a call to end. Read moresource§fn serialize_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeStruct, Self::Error>
fn serialize_struct( self, _name: &'static str, _len: usize ) -> Result<Self::SerializeStruct, Self::Error>
Begin to serialize a struct like
struct Rgb { 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 serialize_struct_variant(
self,
name: &'static str,
variant_index: u32,
variant: &'static str,
_len: usize
) -> Result<Self::SerializeStructVariant, Self::Error>
fn serialize_struct_variant( self, name: &'static str, variant_index: u32, variant: &'static str, _len: usize ) -> Result<Self::SerializeStructVariant, Self::Error>
Begin to serialize a struct variant like
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 is_human_readable(&self) -> bool
fn is_human_readable(&self) -> bool
Determine whether
Serialize implementations should serialize in
human-readable form. Read moresource§fn collect_str<T: ?Sized + Display>(
self,
value: &T
) -> Result<Self::Ok, Self::Error>
fn collect_str<T: ?Sized + Display>( self, value: &T ) -> Result<Self::Ok, Self::Error>
Serialize a string produced by an implementation of
Display. Read moreAuto Trait Implementations§
impl<W, B> Freeze for Serializer<W, B>where
W: Freeze,
impl<W, B> RefUnwindSafe for Serializer<W, B>where
B: RefUnwindSafe,
W: RefUnwindSafe,
impl<W, B> Send for Serializer<W, B>
impl<W, B> Sync for Serializer<W, B>
impl<W, B> Unpin for Serializer<W, B>
impl<W, B> UnwindSafe for Serializer<W, B>where
B: UnwindSafe,
W: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more