va-ts 0.0.4

MPEG-TS implementation for Rust
Documentation
use std::fmt;

// TODO: implement

/// ETSI EN 300 468 V1.15.1
///
/// CA identifier descriptor
#[derive(Clone)]
pub struct DescDVB0x53<'buf> {
    buf: &'buf [u8],
}

impl<'buf> DescDVB0x53<'buf> {
    #[inline(always)]
    pub fn new(buf: &'buf [u8]) -> DescDVB0x53<'buf> {
        DescDVB0x53 { buf }
    }
}

impl<'buf> fmt::Debug for DescDVB0x53<'buf> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, ":dvb-0x53")
    }
}