Trait p25::voice::frame_group::Extra [] [src]

pub trait Extra {
    type Fields;
    fn decode_rs<'a>(
        buf: &'a mut [Hexbit; 24],
        s: &mut Stats
    ) -> Result<&'a [Hexbit]>;
fn decode_extra(buf: &[Hexbit]) -> Self::Fields; }

An "extra" information packet carried along in a frame group.

Associated Types

Base decoder for the packet.

Required Methods

Decode the inner Reed Soloman code.

Transform the given hexbits into a base packet decoder.

Implementors