[][src]Struct nbt::ser::Encoder

pub struct Encoder<'a, W> { /* fields omitted */ }

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

impl<'a, W> Encoder<'a, W> where
    W: Write
[src]

pub fn new(writer: W, header: Option<&'a str>) -> Self[src]

Create an encoder with optional header from a given Writer.

Trait Implementations

impl<'a, 'b, W> Serializer for &'a mut Encoder<'b, W> where
    W: Write
[src]

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. Read more

type Error = Error

The error type when some error occurs during serialization.

type SerializeSeq = Impossible<(), Error>

Type returned from [serialize_seq] for serializing the content of the sequence. Read more

type SerializeTuple = Impossible<(), Error>

Type returned from [serialize_tuple] for serializing the content of the tuple. Read more

type SerializeTupleStruct = Impossible<(), Error>

Type returned from [serialize_tuple_struct] for serializing the content of the tuple struct. Read more

type SerializeTupleVariant = Impossible<(), Error>

Type returned from [serialize_tuple_variant] for serializing the content of the tuple variant. Read more

type SerializeMap = Compound<'a, 'b, W>

Type returned from [serialize_map] for serializing the content of the map. Read more

type SerializeStruct = Compound<'a, 'b, W>

Type returned from [serialize_struct] for serializing the content of the struct. Read more

type SerializeStructVariant = Impossible<(), Error>

Type returned from [serialize_struct_variant] for serializing the content of the struct variant. Read more

fn serialize_unit_struct(self, _name: &'static str) -> Result<()>[src]

Serialize unit structs as empty Tag_Compound data.

fn serialize_newtype_struct<T: ?Sized>(
    self,
    _name: &'static str,
    value: &T
) -> Result<()> where
    T: Serialize
[src]

Serialize newtype structs by their underlying type. Note that this will only be successful if the underyling type is a struct or a map.

fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap>[src]

Serialize maps as Tag_Compound data.

fn serialize_struct(
    self,
    _name: &'static str,
    _len: usize
) -> Result<Self::SerializeStruct>
[src]

Serialize structs as Tag_Compound data.

Auto Trait Implementations

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> UnwindSafe for Encoder<'a, W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.