[][src]Struct msgpack::Packer

pub struct Packer<W> { /* fields omitted */ }

Methods

impl<W> Packer<W>[src]

pub fn new(writer: W) -> Packer<W>[src]

pub fn get_ref(&self) -> &W[src]

pub fn get_mut(&mut self) -> &mut W[src]

pub fn into_inner(self) -> W[src]

impl<W: Write> Packer<W>[src]

pub fn pack_nil(&mut self) -> Result<(), PackError>[src]

pub fn pack_uint(&mut self, v: u64) -> Result<(), PackError>[src]

pub fn pack_from_u8(&mut self, v: u8) -> Result<(), PackError>[src]

pub fn pack_from_u16(&mut self, v: u16) -> Result<(), PackError>[src]

pub fn pack_from_u32(&mut self, v: u32) -> Result<(), PackError>[src]

pub fn pack_from_u64(&mut self, v: u64) -> Result<(), PackError>[src]

pub fn pack_int(&mut self, v: i64) -> Result<(), PackError>[src]

pub fn pack_from_i8(&mut self, v: i8) -> Result<(), PackError>[src]

pub fn pack_from_i16(&mut self, v: i16) -> Result<(), PackError>[src]

pub fn pack_from_i32(&mut self, v: i32) -> Result<(), PackError>[src]

pub fn pack_from_i64(&mut self, v: i64) -> Result<(), PackError>[src]

pub fn pack_f32(&mut self, v: f32) -> Result<(), PackError>[src]

pub fn pack_f64(&mut self, v: f64) -> Result<(), PackError>[src]

pub fn pack_bool(&mut self, v: bool) -> Result<(), PackError>[src]

pub fn pack_str(&mut self, v: &str) -> Result<(), PackError>[src]

pub fn pack_bin(&mut self, v: &[u8]) -> Result<(), PackError>[src]

pub fn pack_ary_header(&mut self, len: usize) -> Result<(), PackError>[src]

pub fn pack_map_header(&mut self, len: usize) -> Result<(), PackError>[src]

pub fn pack_ext_header(
    &mut self,
    ext_type: i8,
    len: usize
) -> Result<(), PackError>
[src]

pub fn pack_value(&mut self, v: Value) -> Result<(), PackError>[src]

pub fn write_payload(&mut self, v: &[u8]) -> Result<(), PackError>[src]

pub fn flush(&mut self) -> Result<(), PackError>[src]

impl<W: Write> Packer<W>[src]

pub fn compound(&mut self) -> Compound<W>[src]

Trait Implementations

impl<W: Debug> Debug for Packer<W>[src]

impl<'a, W> Serializer for &'a mut Packer<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 = SerError

The error type when some error occurs during serialization.

type SerializeSeq = Compound<'a, W>

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

type SerializeTuple = Compound<'a, W>

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

type SerializeTupleStruct = Compound<'a, W>

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

type SerializeTupleVariant = Compound<'a, W>

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

type SerializeMap = Compound<'a, W>

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

type SerializeStruct = Compound<'a, W>

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

type SerializeStructVariant = Compound<'a, W>

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

Auto Trait Implementations

impl<W> Unpin for Packer<W> where
    W: Unpin

impl<W> Sync for Packer<W> where
    W: Sync

impl<W> Send for Packer<W> where
    W: Send

impl<W> UnwindSafe for Packer<W> where
    W: UnwindSafe

impl<W> RefUnwindSafe for Packer<W> where
    W: RefUnwindSafe

Blanket Implementations

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.

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

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

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