pub struct Encoder<'a, W: Write> { /* private fields */ }Expand description
Encode objects to Named Binary Tag format.
This structure can be used to serialize objects which implement the
serde::Serialize trait into NBT format. Note that not all types are
representable in NBT format (notably unsigned integers), so this encoder may
return errors.
Implementations§
Trait Implementations§
Source§impl<'a, 'b, W> Serializer for &'a mut Encoder<'b, W>where
W: Write,
impl<'a, 'b, W> Serializer for &'a mut Encoder<'b, W>where
W: Write,
Source§fn serialize_unit_struct(self, _name: &'static str) -> Result<()>
fn serialize_unit_struct(self, _name: &'static str) -> Result<()>
Serialize unit structs as empty Tag_Compound data.
Source§fn serialize_newtype_struct<T>(
self,
_name: &'static str,
value: &T,
) -> Result<()>
fn serialize_newtype_struct<T>( self, _name: &'static str, value: &T, ) -> Result<()>
Serialize newtype structs by their underlying type. Note that this will only be successful if the underyling type is a struct or a map.
Source§fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap>
fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap>
Serialize maps as Tag_Compound data.
Source§fn serialize_struct(
self,
_name: &'static str,
_len: usize,
) -> Result<Self::SerializeStruct>
fn serialize_struct( self, _name: &'static str, _len: usize, ) -> Result<Self::SerializeStruct>
Serialize structs as Tag_Compound data.
Source§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.Source§type SerializeSeq = Impossible<(), Error>
type SerializeSeq = Impossible<(), Error>
Type returned from
serialize_seq for serializing the content of the
sequence.Source§type SerializeTuple = Impossible<(), Error>
type SerializeTuple = Impossible<(), Error>
Type returned from
serialize_tuple for serializing the content of
the tuple.Source§type SerializeTupleStruct = Impossible<(), Error>
type SerializeTupleStruct = Impossible<(), Error>
Type returned from
serialize_tuple_struct for serializing the
content of the tuple struct.Source§type SerializeTupleVariant = Impossible<(), Error>
type SerializeTupleVariant = Impossible<(), Error>
Type returned from
serialize_tuple_variant for serializing the
content of the tuple variant.Source§type SerializeMap = Compound<'a, 'b, W>
type SerializeMap = Compound<'a, 'b, W>
Type returned from
serialize_map for serializing the content of the
map.Source§type SerializeStruct = Compound<'a, 'b, W>
type SerializeStruct = Compound<'a, 'b, W>
Type returned from
serialize_struct for serializing the content of
the struct.Source§type SerializeStructVariant = Impossible<(), Error>
type SerializeStructVariant = Impossible<(), Error>
Type returned from
serialize_struct_variant for serializing the
content of the struct variant.Source§fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error>
fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error>
Serialize a
bool value. Read moreSource§fn serialize_i8(self, _: i8) -> Result<Self::Ok, Self::Error>
fn serialize_i8(self, _: i8) -> Result<Self::Ok, Self::Error>
Serialize an
i8 value. Read moreSource§fn serialize_i16(self, _: i16) -> Result<Self::Ok, Self::Error>
fn serialize_i16(self, _: i16) -> Result<Self::Ok, Self::Error>
Serialize an
i16 value. Read moreSource§fn serialize_i32(self, _: i32) -> Result<Self::Ok, Self::Error>
fn serialize_i32(self, _: i32) -> Result<Self::Ok, Self::Error>
Serialize an
i32 value. Read moreSource§fn serialize_i64(self, _: i64) -> Result<Self::Ok, Self::Error>
fn serialize_i64(self, _: i64) -> Result<Self::Ok, Self::Error>
Serialize an
i64 value. Read moreSource§fn serialize_u16(self, _: u16) -> Result<Self::Ok, Self::Error>
fn serialize_u16(self, _: u16) -> Result<Self::Ok, Self::Error>
Serialize a
u16 value. Read moreSource§fn serialize_u32(self, _: u32) -> Result<Self::Ok, Self::Error>
fn serialize_u32(self, _: u32) -> Result<Self::Ok, Self::Error>
Serialize a
u32 value. Read moreSource§fn serialize_u64(self, _: u64) -> Result<Self::Ok, Self::Error>
fn serialize_u64(self, _: u64) -> Result<Self::Ok, Self::Error>
Serialize a
u64 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, _: &[u8]) -> Result<Self::Ok, Self::Error>
fn serialize_bytes(self, _: &[u8]) -> Result<Self::Ok, Self::Error>
Serialize a chunk of raw byte data. Read more
Source§fn serialize_unit_variant(
self,
_: &'static str,
_: u32,
_: &'static str,
) -> Result<Self::Ok, Self::Error>
fn serialize_unit_variant( self, _: &'static str, _: u32, _: &'static str, ) -> Result<Self::Ok, Self::Error>
Source§fn serialize_newtype_variant<__T>(
self,
_: &'static str,
_: u32,
_: &'static str,
_: &__T,
) -> Result<Self::Ok, Self::Error>
fn serialize_newtype_variant<__T>( self, _: &'static str, _: u32, _: &'static str, _: &__T, ) -> Result<Self::Ok, Self::Error>
Source§fn serialize_seq(
self,
_: Option<usize>,
) -> Result<Self::SerializeSeq, Self::Error>
fn serialize_seq( self, _: Option<usize>, ) -> Result<Self::SerializeSeq, Self::Error>
Begin to serialize a variably sized sequence. This call must be
followed by zero or more calls to
serialize_element, then a call to
end. Read moreSource§fn serialize_tuple(self, _: usize) -> Result<Self::SerializeTuple, Self::Error>
fn serialize_tuple(self, _: 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,
_: &'static str,
_: usize,
) -> Result<Self::SerializeTupleStruct, Self::Error>
fn serialize_tuple_struct( self, _: &'static str, _: 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,
_: &'static str,
_: u32,
_: &'static str,
_: usize,
) -> Result<Self::SerializeTupleVariant, Self::Error>
fn serialize_tuple_variant( self, _: &'static str, _: u32, _: &'static str, _: 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_struct_variant(
self,
_: &'static str,
_: u32,
_: &'static str,
_: usize,
) -> Result<Self::SerializeStructVariant, Self::Error>
fn serialize_struct_variant( self, _: &'static str, _: u32, _: &'static str, _: 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 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_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 collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>
fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>
Collect an iterator as a sequence. Read more
Source§fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>
fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>
Collect an iterator as a map. Read more
Source§fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
Serialize a string produced by an implementation of
Display. 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 moreAuto Trait Implementations§
impl<'a, W> Freeze for Encoder<'a, W>where
W: Freeze,
impl<'a, W> RefUnwindSafe for Encoder<'a, W>where
W: RefUnwindSafe,
impl<'a, W> Send for Encoder<'a, W>where
W: Send,
impl<'a, W> Sync for Encoder<'a, W>where
W: Sync,
impl<'a, W> Unpin for Encoder<'a, W>where
W: Unpin,
impl<'a, W> UnsafeUnpin for Encoder<'a, W>where
W: UnsafeUnpin,
impl<'a, W> UnwindSafe for Encoder<'a, W>where
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