pub trait PacketPayloadLenCursor: EncoderValue {
    fn new() -> Self;
    fn update(&self, buffer: &mut EncoderBuffer<'_>, actual_len: usize);
}

Required Methods

Implementations on Foreign Types

used for short packets that don’t use a payload len

Implementors