Trait packet::builder::Builder [] [src]

pub trait Builder<B: Buffer> {
    fn with(buffer: B) -> Result<Self>
    where
        Self: Sized
;
fn finalizer(&mut self) -> &mut Finalization;
fn build(self) -> Result<B::Inner>; }

A packet Builder.

Required Methods

Create a new packet Builder with the given buffer.

Access the finalizers.

Build the packet.

Implementors