[][src]Struct cqc::Encoder

pub struct Encoder { /* fields omitted */ }

Packet encoder

A basic packet encoder

Methods

impl Encoder[src]

pub fn new() -> Encoder[src]

Create a big endian Encoder.

pub fn encode<'buf>(&self, request: &Request, buffer: &'buf mut [u8]) -> usize[src]

Encode a CQC request packet into buffer of bytes. The return value is a the number of bytes written.

If the provided buffer is not large enough to encode the request encode_request will panic.

pub fn into_vec(&self, request: &Request) -> Vec<u8>[src]

Encode a CQC request packet into a newly allocated vector of bytes.

Auto Trait Implementations

impl Send for Encoder

impl Sync for Encoder

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.